zshconfig/zsh/mkcd.zsh
2023-10-05 19:40:05 +02:00

4 lines
82 B
Bash

# create directory and move into it
function mkcd() {
mkdir $1 && cd $1
}