theomjones
4/4/2018 - 8:39 PM

handy_funcs.zsh

# Make a directory and cd into it.

mk() {
  mkdir -p $1
  cd $1
}