mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2026-03-13 03:24:06 +01:00
14 lines
172 B
Bash
Executable file
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
|
|
}
|