Commit 9172b3a8 authored by Yannik Stein's avatar Yannik Stein
Browse files

fix typo in cd-wrapper

parent d05b2010
...@@ -26,9 +26,9 @@ cd () { ...@@ -26,9 +26,9 @@ cd () {
elif [[ "x$*" == "x...." ]]; then elif [[ "x$*" == "x...." ]]; then
cd ../../.. cd ../../..
elif [[ "x$*" == "x....." ]]; then elif [[ "x$*" == "x....." ]]; then
cd ../../..
elif [[ "x$*" == "x......" ]]; then
cd ../../../.. cd ../../../..
elif [[ "x$*" == "x......" ]]; then
cd ../../../../..
else else
builtin cd "$@" builtin cd "$@"
fi fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment