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