oh-my-zsh/plugins/singlechar/singlechar.plugin.zsh

87 lines
1.6 KiB
Bash
Raw Normal View History

2012-05-05 08:58:55 +00:00
################################################################################
# FILE: singlechar.plugin.zsh
# DESCRIPTION: oh-my-zsh plugin file.
# AUTHOR: Michael Varner (musikmichael@web.de)
# VERSION: 1.0.0
#
# This plugin adds single char shortcuts (and combinations) for some commands.
#
################################################################################
2012-05-04 22:05:50 +00:00
###########################
# Settings
2012-05-05 08:58:55 +00:00
2012-05-04 22:05:50 +00:00
# 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
2012-05-05 14:03:48 +00:00
default WGET wget
default CURL curl
2012-05-04 22:05:50 +00:00
2012-05-05 14:07:05 +00:00
env_defaul PAGER less
2012-05-04 22:05:50 +00:00
###########################
# Alias
2012-05-05 14:03:48 +00:00
# CAT, GREP, CURL, WGET
2012-05-04 22:05:50 +00:00
alias y='"$GREP" -i'
alias n='"$GREP" -vi'
alias c='cat'
alias w='cat >'
alias a='cat >>'
2012-05-05 14:07:05 +00:00
alias p='"$PAGER"'
2012-05-05 14:03:48 +00:00
alias d='"$WGET"'
alias u='"$CURL"'
# XARGS
2012-05-04 22:05:50 +00:00
alias x='xargs'
2012-05-04 22:05:50 +00:00
alias xy='xargs "$GREP" -i'
alias xn='xargs "$GREP" -iv'
alias xc='xargs cat'
alias xw='xargs cat >'
alias xa='xargs cat >>'
2012-05-05 14:07:05 +00:00
alias xp='xargs "$PAGER"'
2012-05-05 14:03:48 +00:00
alias xd='xargs "$WGET"'
alias xu='xargs "$CURL"'
# SUDO
2012-05-04 22:05:50 +00:00
alias s='"$ROOT"'
2012-05-05 14:08:40 +00:00
alias sy='"$ROOT" "$GREP" -i'
alias sn='"$ROOT" "$GREP" -iv'
alias sc='"$ROOT" cat'
alias sw='"$ROOT" cat >'
alias sa='"$ROOT" cat >>'
alias sp='"$ROOT" "$PAGER"'
alias sd='"$ROOT" "$WGET"'
# SUDO-XARGS
2012-05-04 22:05:50 +00:00
alias sx='"$ROOT" xargs'
2012-05-04 22:05:50 +00:00
alias sxy='"$ROOT" xargs "$GREP" -i'
alias sxn='"$ROOT" xargs "$GREP" -iv'
alias sxc='"$ROOT" xargs cat'
alias sxw='"$ROOT" xargs cat >'
alias sxa='"$ROOT" xargs cat >>'
2012-05-05 14:03:48 +00:00
2012-05-05 14:07:05 +00:00
alias sxp='"$ROOT" xargs "$PAGER"'
2012-05-05 14:03:48 +00:00
alias sxd='"$ROOT" xargs "$WGET"'
alias sxu='"$ROOT" xargs "$CURL"'