config.phundrak.com/.config/fish/functions/mcd.fish
2019-09-26 20:49:23 +02:00

5 lines
87 B
Fish

function mcd -d "Create directory and cd to it"
mkdir $argv[1]
cd $argv[1]
end