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

5 lines
90 B
Fish
Raw Normal View History

2019-07-21 01:27:31 +00:00
function mcd -d "Create directory and cd to it"
mkdir -p $argv[1]
2019-07-21 01:27:31 +00:00
cd $argv[1]
end