4 lines
82 B
Bash
4 lines
82 B
Bash
# create directory and move into it
|
|
function mkcd() {
|
|
mkdir $1 && cd $1
|
|
}
|