dotfiles/shell/cd.sh

15 lines
172 B
Bash
Raw Normal View History

2017-01-26 13:48:55 +01:00
#!/bin/sh
2017-01-26 13:48:55 +01:00
#correct some fast tipped cds
c() {
2026-02-02 20:13:26 +01:00
if [ "${1}" = "d.." ]; then
cd .. || return
pwd
2017-01-26 13:48:55 +01:00
fi
2026-02-02 20:13:26 +01:00
if [ -d "${1}" ]; then
cd "${1}" || return
pwd
2017-01-26 13:48:55 +01:00
fi
2026-02-02 20:13:26 +01:00
return 0
2017-01-26 13:48:55 +01:00
}