4 lines
88 B
Fish
4 lines
88 B
Fish
# create directory and move into it
|
|
function mkcd
|
|
mkdir $argv[1] && cd $argv[1]
|
|
end
|