dotfiles/dot_config/fish/functions/mkcd.fish
2026-01-28 17:46:39 +00:00

4 lines
139 B
Fish

# Create directory and cd into it
function mkcd --description "Create a directory and cd into it"
mkdir -p $argv[1] && cd $argv[1]
end