dotfiles/fish/functions/mkcd.fish

4 lines
64 B
Fish
Raw Normal View History

#!/usr/bin/env fish
function mkcd
mkdir $argv; and cd $argv
end