dotfiles/.config/fish/functions/mcd.fish

5 lines
90 B
Fish

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