]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
shell/aliases: Add lal() and update ll().
authorSimon Ruderich <simon@ruderich.org>
Thu, 11 Mar 2010 00:24:10 +0000 (01:24 +0100)
committerSimon Ruderich <simon@ruderich.org>
Thu, 11 Mar 2010 00:24:10 +0000 (01:24 +0100)
ll() now only displays files displayed by ls() as list, lal() displays
all files as list.

shell/aliases

index 5484fc9aedf2ba358682978798efeb4bf49a880f..3e03942a6e63563e938a87c1a18980a82de3c2b6 100644 (file)
@@ -61,8 +61,12 @@ 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 $*
 }