]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - shell/aliases
shell/aliases: Add some more aliases from zsh/rc.
[config/dotfiles.git] / shell / aliases
index cb2af4b8c024a55b7fc35c63de2588d07fb827db..5484fc9aedf2ba358682978798efeb4bf49a880f 100644 (file)
@@ -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'