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

27 lines
420 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
alias history='fc -l 1'
2009-10-13 03:17:36 +08:00
# List direcory contents
alias lsa='ls -lah'
alias l='ls -lA1'
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'