forked from rmm5t/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbash_aliases
More file actions
253 lines (208 loc) · 8.05 KB
/
bash_aliases
File metadata and controls
253 lines (208 loc) · 8.05 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
# Adds an alias to the current shell and to this file.
# Borrowed from Mislav (http://github.com/mislav/dotfiles/tree/master/bash_aliases)
add-alias ()
{
local name=$1 value=$2
echo "alias $name='$value'" >> ~/.bash_aliases
eval "alias $name='$value'"
alias $name
}
############################################################
## Bash
############################################################
alias cd..="cd .."
alias ..="cd .."
alias ...="cd ../../"
alias ....="cd ../../../"
alias .2="cd ../../"
alias .3="cd ../../../"
alias .4="cd ../../../../"
alias .5="cd ../../../../../"
alias ~="cd ~"
alias c="clear"
alias path='echo -e ${PATH//:/\\n}'
alias ax="chmod a+x"
############################################################
## PS
############################################################
alias psg="ps aux | grep -v grep | grep -i -e VSZ -e"
############################################################
## Grep
############################################################
alias hgrep="history | grep"
############################################################
## List
############################################################
if [[ `uname` == 'Darwin' ]]; then
alias ls="ls -G"
# good for dark backgrounds
export LSCOLORS=gxfxcxdxbxegedabagacad
else
alias ls="ls --color=auto"
# good for dark backgrounds
export LS_COLORS='no=00:fi=00:di=00;36:ln=00;35:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;31:'
# For LS_COLORS template: $ dircolors /etc/DIR_COLORS
fi
alias l="ls"
alias ll="ls -lh"
alias la="ls -a"
alias lal="ls -alh"
alias l.="ls -A | egrep '^\.'"
############################################################
## Git
############################################################
alias g="git"
alias gb="git branch -a -v"
alias gc="git commit -v"
alias gca="git commit -v -a"
alias gd="git diff"
alias gl="git pull"
alias glr="git pull --rebase"
alias gf="git fetch"
alias gp="git push"
alias gs="git status -sb"
alias gr="git remote"
alias grp="git remote prune"
alias gcp="git cherry-pick"
alias gg="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ci)%Creset' --abbrev-commit --date=relative"
alias ggs="gg --stat"
alias gsl="git shortlog -sn"
alias gw="git whatchanged"
alias gsu="git submodule update --init --recursive"
alias gi="git config branch.master.remote 'origin'; git config branch.master.merge 'refs/heads/master'"
if [ `which hub 2> /dev/null` ]; then
alias git="hub"
fi
alias git-churn="git log --pretty="format:" --name-only | grep -vE '^(vendor/|$)' | sort | uniq -c | sort"
function gsd {
target=${1%/}
git submodule deinit $target
git rm -f $target
rm -rf .git/modules/$target
}
# Useful report of what has been committed locally but not yet pushed to another
# branch. Defaults to the remote origin/master. The u is supposed to stand for
# undone, unpushed, or something.
function gu {
local branch=$1
if [ -z "$1" ]; then
branch=master
fi
if [[ ! "$branch" =~ "/" ]]; then
branch=origin/$branch
fi
local cmd="git cherry -v $branch"
echo $cmd
$cmd
}
function gco {
if [ -z "$1" ]; then
git checkout master
else
git checkout $*
fi
}
function gprune {
local remote=$1
if [ -z "$1" ]; then
remote=origin
fi
local cmd="git remote prune $remote"
echo $cmd
$cmd
}
function st {
if [ -d ".svn" ]; then
svn status
else
git status -sb
fi
}
############################################################
## Subversion
############################################################
# Remove all .svn folders from directory recursively
alias svn-clean='find . -name .svn -print0 | xargs -0 rm -rf'
############################################################
## OS X
############################################################
# Get rid of those pesky .DS_Store files recursively
alias dstore-clean='find . -type f -name .DS_Store -print0 | xargs -0 rm'
# Track who is listening to your iTunes music
alias whotunes='lsof -r 2 -n -P -F n -c iTunes -a -i TCP@`hostname`:3689'
# Empty the Trash on all mounted volumes and the main HDD
# Also, clear Apple’s System Logs to improve shell startup speed
alias emptytrash="sudo rm -rfv /Volumes/*/.Trashes; sudo rm -rfv ~/.Trash; sudo rm -rfv /private/var/log/asl/*.asl"
# Show/hide hidden files in Finder
alias showdotfiles="defaults write com.apple.finder AppleShowAllFiles -bool true && killall Finder"
alias hidedotfiles="defaults write com.apple.finder AppleShowAllFiles -bool false && killall Finder"
# Hide/show all desktop icons (useful when presenting)
alias showdeskicons="defaults write com.apple.finder CreateDesktop -bool true && killall Finder"
alias hidedeskicons="defaults write com.apple.finder CreateDesktop -bool false && killall Finder"
############################################################
## MongoDB
############################################################
alias repair-mongo="rm /usr/local/var/mongodb/mongod.lock && mongod --repair"
############################################################
## XClip
############################################################
alias clip="xclip -selection clipboard" # copy to system clipboard
alias v="xclip -o -selection clipboard" # paste from system clipboard
############################################################
## Brain Corp
############################################################
alias roc_login='rocc -u https://api.dev.roc.braincorp.com login -u nigel'
function curl_roc () {
URL=$1
[[ "${URL}" != /* ]] && URL="/${URL}"
TOKEN=$(jq -r .Token ~/rocc.json)
curl -v -H "Authorization: Bearer ${TOKEN}" https://api.dev.roc.braincorp.com$URL
}
############################################################
## Miscellaneous
############################################################
alias e=$EDITOR
alias install_emacs='brew install emacs --srgb --cocoa'
alias install_emacs_head='brew install bazaar && brew install emacs --HEAD --srgb --cocoa'
alias link_emacs='ln -snf /usr/local/Cellar/emacs/24.3/bin/emacs /usr/local/bin/emacs && ln -snf /usr/local/Cellar/emacs/24.3/bin/emacsclient /usr/local/bin/emacsclient'
alias link_emacs_head='ln -snf /usr/local/Cellar/emacs/HEAD/bin/emacs /usr/local/bin/emacs && ln -snf /usr/local/Cellar/emacs/HEAD/bin/emacsclient /usr/local/bin/emacsclient'
alias upgrade_emacs='brew uninstall emacs && install_emacs && link_emacs'
alias upgrade_emacs_head='brew uninstall emacs && install_emacs_head && link_emacs_head'
# Add an "alert" alias for long running commands. Use like so:
# sleep 10; alert
alias alert='LAST=$?; notify-send --urgency="$([ $LAST = 0 ] && echo normal || echo critical)" "$([ $LAST = 0 ] || echo FAILURE )$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"; paplay /usr/share/sounds/ubuntu/notifications/Amsterdam.ogg'
alias alert_fail='LAST=$?; notify-send --urgency="$([ $LAST = 0 ] && echo normal || echo critical)" "$([ $LAST = 0 ] || echo FAILURE )$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"; [ $LAST = 0 ] || paplay /usr/share/sounds/ubuntu/notifications/Amsterdam.ogg'
export GREP_COLOR="1;37;41"
alias grep="grep --color=auto"
alias wgeto="wget -q -O -"
alias sha1="openssl dgst -sha1"
alias sha2="openssl dgst -sha256"
alias sha512="openssl dgst -sha512"
alias b64="openssl enc -base64"
alias 256color="export TERM=xterm-256color"
alias prettyjson="python -mjson.tool"
alias flushdns='sudo discoveryutil udnsflushcaches'
alias whichlinux='uname -a; cat /etc/*release; cat /etc/issue'
alias myip="dig +short myip.opendns.com @resolver1.opendns.com"
alias settings="XDG_CURRENT_DESKTOP=Unity unity-control-center"
function eachd {
for dir in *; do
cd $dir
echo $dir
$1
cd ..
done
}
function fakefile {
let mb=$1
let bytes=mb*1048576
dd if=/dev/random of=${mb}MB-fakefile bs=${bytes} count=1 &> /dev/null
}
############################################################
############################################################
## Infrastructure work
############################################################
alias k='kubectl'
complete -F __start_kubectl k
alias infra='source infra'
alias tf='terraform'