mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
66 lines
No EOL
1.3 KiB
Bash
66 lines
No EOL
1.3 KiB
Bash
################################################################################
|
|
# 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.
|
|
#
|
|
################################################################################
|
|
|
|
###########################
|
|
# 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
|
|
default WGET wget
|
|
default CURL curl
|
|
|
|
###########################
|
|
# Alias
|
|
|
|
# CAT, GREP, CURL, WGET
|
|
|
|
alias y='"$GREP" -i'
|
|
alias n='"$GREP" -vi'
|
|
|
|
alias c='cat'
|
|
alias w='cat >'
|
|
alias a='cat >>'
|
|
|
|
alias d='"$WGET"'
|
|
alias u='"$CURL"'
|
|
|
|
# XARGS
|
|
|
|
alias x='xargs'
|
|
|
|
alias xy='xargs "$GREP" -i'
|
|
alias xn='xargs "$GREP" -iv'
|
|
|
|
alias xc='xargs cat'
|
|
alias xw='xargs cat >'
|
|
alias xa='xargs cat >>'
|
|
|
|
alias xd='xargs "$WGET"'
|
|
alias xu='xargs "$CURL"'
|
|
|
|
# SUDO
|
|
|
|
alias s='"$ROOT"'
|
|
|
|
alias sx='"$ROOT" xargs'
|
|
|
|
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 >>'
|
|
|
|
alias sxd='"$ROOT" xargs "$WGET"'
|
|
alias sxu='"$ROOT" xargs "$CURL"' |