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