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.
22 lines
367 B
22 lines
367 B
# 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 |
|
|
|
alias afind='ack-grep -il' |
|
|
|
|