dotfiles/.config/fish/functions/mkd.fish

4 lines
91 B
Fish
Raw Normal View History

2022-07-07 18:32:27 +02:00
function mkd -d "Create new directory and enter it"
mkdir -p $argv[1]; cd $argv[1]
end