5 lines
91 B
Fish
5 lines
91 B
Fish
|
function mkcd -d "Create directory and cd to it"
|
||
|
mkdir -p $argv[1]
|
||
|
cd $argv[1]
|
||
|
end
|