4 lines
39 B
Bash
4 lines
39 B
Bash
|
function mke(){
|
||
|
mkdir -p $1
|
||
|
cd $1
|
||
|
}
|