]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - shell/aliases
shell/aliases: Add lal() and update ll().
[config/dotfiles.git] / shell / aliases
index cb2af4b8c024a55b7fc35c63de2588d07fb827db..3e03942a6e63563e938a87c1a18980a82de3c2b6 100644 (file)
@@ -61,12 +61,22 @@ unset ls_color
 la() {
     ls -a $*
 }
-# Helper function to list all files in list format with access rights, etc.
+# Helper function to list the files in list format with access rights, etc.
 ll() {
+    ls -l $*
+}
+# Helper function to list all files in list format with access rights, etc.
+lal() {
     la -l $*
 }
 
 
+# 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'