blob: d58a7236b27cc4c6bcbbb4d22be5f449a47b2ae0 [file] [log] [blame]
Robert R Evans9c7cd9a2010-10-02 11:55:34 -07001# List directory contents
2alias sl=ls
3alias ls='ls -G' # Compact view, show colors
4alias la='ls -AF' # Compact view, show hidden
5alias ll='ls -al'
6alias l='ls -a'
7
8alias c='clear'
9alias k='clear'
10
11alias ..='cd ..' # Go up one directory
12alias ...='cd ../..' # Go up two directories
13alias -- -="cd -" # Go back
14
15# Shell History
16alias h='history'
17
18#