0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/lib/aliases.zsh

37 lines
650 B
Bash
Raw Normal View History

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