1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-25 01:10:46 +00:00
ohmyzsh/plugins/singlechar/singlechar.plugin.zsh

24 lines
469 B
Bash
Raw Normal View History

2012-05-04 22:05:50 +00:00
###########################
# Settings
#
# These can be overwritten any time.
# If they are not set yet, they will be
# overwritten with their default values
default GREP grep
default ROOT sudo
###########################
# Alias
alias y='"$GREP" -i'
alias n='"$GREP" -vi'
alias x='xargs'
alias xy='xargs "$GREP" -i'
alias xn='xargs "$GREP" -iv'
alias s='"$ROOT"'
alias sx='"$ROOT" xargs'
alias sxy='"$ROOT" xargs "$GREP" -i'
alias sxn='"$ROOT" xargs "$GREP" -iv'