123456789101112131415161718192021222324252627282930313233343536 |
- # Push and pop directories on directory stack
- alias pu='pushd'
- alias po='popd'
- # Basic directory operations
- alias ...='cd ../..'
- alias -- -='cd -'
- # Super user
- alias _='sudo'
- alias please='sudo'
- #alias g='grep -in'
- # Show history
- if [ "$HIST_STAMPS" = "mm/dd/yyyy" ]
- then
- alias history='fc -fl 1'
- elif [ "$HIST_STAMPS" = "dd.mm.yyyy" ]
- then
- alias history='fc -El 1'
- elif [ "$HIST_STAMPS" = "yyyy-mm-dd" ]
- then
- alias history='fc -il 1'
- else
- alias history='fc -l 1'
- fi
- # List direcory contents
- alias lsa='ls -lah'
- alias l='ls -la'
- alias ll='ls -l'
- alias la='ls -lA'
- alias sl=ls # often screw this up
- alias afind='ack-grep -il'
|