4 lines
102 B
Fish
4 lines
102 B
Fish
function mkcd --description 'Create and cd into a directory'
|
|
mkdir -p $argv[1] && cd $argv[1]
|
|
end
|