2026-07-16 05:09:18 +05:30

4 lines
105 B
Fish

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