Browse code

Don't display dotfiles or reverse sort with ll alias.

The ll alias is a very common default for bash in Linux distributions, so use
that definition.

James Rowe authored on 09/05/2010 at 14:23:11
Showing 1 changed files
... ...
@@ -18,7 +18,7 @@ alias history='fc -l 1'
18 18
 # List direcory contents
19 19
 alias lsa='ls -lah'
20 20
 alias l='ls -la'
21
-alias ll='ls -alr'
21
+alias ll='ls -l'
22 22
 alias sl=ls # often screw this up
23 23
 
24 24
 alias afind='ack-grep -il'