]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
shell/aliases: Correctly use "$@" instead of $* for arguments.
authorSimon Ruderich <simon@ruderich.org>
Wed, 16 Nov 2011 12:36:46 +0000 (13:36 +0100)
committerSimon Ruderich <simon@ruderich.org>
Wed, 16 Nov 2011 12:36:46 +0000 (13:36 +0100)
shell/aliases

index 52e105c645008fd452d8ba074f40dce3f9e320e6..f59801bba4c13b650c7f8e91eb50961bc69552fb 100644 (file)
@@ -62,15 +62,15 @@ fi
 unset ls_color
 # Helper function to list all files.
 la() {
-    ls -a $*
+    ls -a "$@"
 }
 # Helper function to list the files in list format with access rights, etc.
 ll() {
-    ls -l $*
+    ls -l "$@"
 }
 # Helper function to list all files in list format with access rights, etc.
 lal() {
-    la -l $*
+    la -l "$@"
 }