dotfiles/shell/cd.sh
2026-02-02 20:13:26 +01:00

14 lines
172 B
Bash
Executable file

#!/bin/sh
#correct some fast tipped cds
c() {
if [ "${1}" = "d.." ]; then
cd .. || return
pwd
fi
if [ -d "${1}" ]; then
cd "${1}" || return
pwd
fi
return 0
}