#!/usr/bin/env zsh ################################################################################ # # This file is autoloaded by .zshrc, and actually loaded when executed # ################################################################################ # # Filename: mkcd # Original authors: grml-team (grml.org), (c) Michael Prokop # Modifications: Dennis Eriksen # License: This file is licensed under the GPL v2. # # Originally from the GRML zshrc file [1] # # 1: emulate -L zsh setopt errexit # Create Directory and cd to it if (( ARGC != 1 )); then print -ru2 -- "usage: $0 " return 1; fi if [[ ! -d $1 ]]; then command mkdir -p $1 else print -ru2 -- "\`$1' already exists: cd-ing." fi builtin cd $1 # END OF FILE #################################################################