You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
397 B
25 lines
397 B
# 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 g='grep -in' |
|
|
|
# Show history |
|
alias history='fc -l 1' |
|
|
|
# List direcory contents |
|
alias lsa='ls -lah' |
|
alias l='ls -la' |
|
alias ll='ls -l' |
|
alias sl=ls # often screw this up |
|
|
|
alias afind='ack-grep -il' |
|
|
|
alias x=extract
|
|
|