blob: aadcde4232da98f56cc359e10d9b1ea173c61ef0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
################################################################################
# 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
env_defaul PAGER less
###########################
# Alias
# CAT, GREP, CURL, WGET
alias y='"$GREP" -i'
alias n='"$GREP" -vi'
alias c='cat'
alias w='cat >'
alias a='cat >>'
alias p='"$PAGER"'
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 xp='xargs "$PAGER"'
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 sxp='"$ROOT" xargs "$PAGER"'
alias sxd='"$ROOT" xargs "$WGET"'
alias sxu='"$ROOT" xargs "$CURL"'
|