1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-27 19:06:15 +08:00
ohmyzsh/lib/aliases.zsh

37 lines
647 B
Bash
Raw Normal View History

2009-10-13 03:17:36 +08:00
# Push and pop directories on directory stack
alias pu='pushd'
alias po='popd'
2009-10-13 03:17:36 +08:00
# Basic directory operations
alias ...='cd ../..'
alias -- -='cd -'
2009-10-13 03:17:36 +08:00
# Super user
alias _='sudo'
2012-07-27 01:54:15 +08:00
alias please='sudo'
2009-08-31 20:59:34 +08:00
#alias g='grep -in'
2009-09-04 02:45:23 +08:00
2009-10-13 03:17:36 +08:00
# 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
2009-10-13 03:17:36 +08:00
# List direcory contents
alias lsa='ls -lah'
2013-04-28 22:34:36 +08:00
alias l='ls -la'
alias ll='ls -l'
alias la='ls -lA'
alias sl=ls # often screw this up
2009-10-11 21:49:24 +08:00
alias afind='ack-grep -il'