X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=shell%2Faliases;h=5484fc9aedf2ba358682978798efeb4bf49a880f;hb=4b18a0ea15175ba29698f9ee6033853cf1158a49;hp=cb2af4b8c024a55b7fc35c63de2588d07fb827db;hpb=0b47efd8a633ce89b988f5cd39410b8cfe3c37ae;p=config%2Fdotfiles.git diff --git a/shell/aliases b/shell/aliases index cb2af4b..5484fc9 100644 --- a/shell/aliases +++ b/shell/aliases @@ -67,6 +67,12 @@ ll() { } +# Make going up directories simple. +alias ..='cd ..' +alias ...='cd ../..' +alias ....='cd ../../..' +alias .....='cd ../../../..' + # I sometimes confuse editor and shell, print a warning to prevent I exit the # shell. alias :q='echo "This is not Vim!" >&2'