add mcd: mkdir & cd combo

pull/1144/head
Бажуков Георгий 2018-02-08 00:58:31 +05:00
parent 7bd62af151
commit b21f7e53b7
1 changed files with 8 additions and 0 deletions

View File

@ -112,3 +112,11 @@ catt() {
fi
done
}
# mkdir & cd combo
function mcd()
{
mkdir -p $1
cd $1
}