dotfiles/.config/shell/zshrc.d/6-mkcd.zsh

6 lines
81 B
Bash
Raw Normal View History

2019-07-24 05:33:28 +00:00
#!/bin/zsh
2019-02-04 02:32:45 +00:00
# mkdir & cd
2019-07-24 09:32:04 +00:00
function mkcd() {
mkdir -p "$@" && cd "$_" || return
2019-02-04 02:32:45 +00:00
}