mirror of
https://github.com/tedkulp/dotfiles
synced 2026-03-05 13:40:18 -05:00
9 lines
222 B
Bash
9 lines
222 B
Bash
# alias cd=z
|
|
cd() {
|
|
if whence -w z >/dev/null 2>&1; then # Does a command called 'z' exist right now?
|
|
z "$@" # use it
|
|
else
|
|
builtin cd "$@" # quiet fallback
|
|
fi
|
|
}
|