mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2025-05-24 02:54:40 +02:00
14 lines
159 B
Bash
Executable file
14 lines
159 B
Bash
Executable file
#!/bin/sh
|
|
|
|
#correct some fast tipped cds
|
|
c() {
|
|
if [ "$1" = "d.." ]; then
|
|
cd ..;
|
|
pwd;
|
|
fi
|
|
if [ -d "$1" ]; then
|
|
cd "$1" || exit;
|
|
pwd;
|
|
fi
|
|
return 0;
|
|
}
|