b71a2b9d0f
Those aliases should be in user's .zshrc file, instead of being default.
37 lines
650 B
Bash
37 lines
650 B
Bash
# 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 -lah'
|
|
alias ll='ls -lh'
|
|
alias la='ls -lAh'
|
|
alias sl=ls # often screw this up
|
|
|
|
alias afind='ack-grep -il'
|
|
|