-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
bash_aliases
486 lines (401 loc) Β· 13.2 KB
/
bash_aliases
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
# https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit
COLOR_BLACK="$(__tput setaf 0)"
COLOR_WHITE="$(__tput setaf 7)"
COLOR_DARK_GRAY="$(__tput setaf 8)"
COLOR_GRAY="$(__tput setaf 15)"
COLOR_RED="$(__tput setaf 1)"
COLOR_GREEN="$(__tput setaf 2)"
COLOR_YELLOW="$(__tput setaf 3)"
COLOR_BLUE="$(__tput setaf 4)"
COLOR_MAGENTA="$(__tput setaf 5)"
COLOR_CYAN="$(__tput setaf 6)"
COLOR_RESET="$(__tput sgr0)"
# 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"
############################################################
## List
############################################################
# for Mac (good for dark backgrounds)
export LSCOLORS=gxfxcxdxbxegedabagacad
# for non-Mac and `tree` command (good for dark backgrounds)
# For LS_COLORS template: $ dircolors /etc/DIR_COLORS
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:'
if [[ `uname` == 'Darwin' ]]; then
alias ls="ls -G"
else
alias ls="ls --color=auto"
fi
alias l="ls"
alias ll="ls -lh"
alias la="ls -a"
alias lal="ls -alh"
############################################################
## Git
############################################################
if [ -d "/Applications/GitX.app/" ]; then
alias gitx="/Applications/GitX.app/Contents/Resources/gitx"
fi
function gb {
tput rmam; git branch -v $*; tput smam
}
alias g="git"
# alias gb="tput rmam; git branch -a -v; tput smam"
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 %C(cyan)%an%Creset'"
alias ggs="gg --stat"
alias gsl="git shortlog -sn --no-merges"
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 gchurn="git log --pretty="format:" --name-only | grep -vE '^(vendor/|$)' | sort | uniq -c | sort"
alias gcherry="git log --left-right --graph --cherry-pick --oneline" # master...feature
alias ggemfilelock="git checkout HEAD -- Gemfile.lock && bundle install"
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.
# $1: upstream (default: master)
# $2: head (default: current HEAD)
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 $2"
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"
alias caffeinated="caffeinate -disu"
############################################################
## Ruby
############################################################
alias rtags="ctags -e -R app lib vendor tasks"
function gemdir {
echo `gem env gemdir`
}
function gemfind {
local gems=`gemdir`/gems
echo `ls $gems | grep -i $1 | sort | tail -1`
}
# Use: gemcd <name>, cd's into your gems directory
# that best matches the name provided.
function gemcd {
cd `gemdir`/gems/`gemfind $1`
}
# Use: gemdoc <gem name>, opens the rdoc of the gem
# that best matches the name provided.
function gemdoc {
open `gemdir`/doc/`gemfind $1`/rdoc/index.html
}
alias rehash="rbenv rehash && nodenv rehash"
function update-rubygems {
cyan=`tput setaf 6`
reset=`tput sgr0`
for version in `rbenv whence gem`; do
rbenv shell "$version"
echo
echo "${cyan}Updating rubygems for ${version}${reset}"
gem update --system --quiet
echo
echo "${cyan}Updating bundler for ${version}${reset}"
gem update bundler --quiet
done
}
############################################################
## Bundler
############################################################
function ignore_vendor_ruby {
grep -q 'vendor/bundle' .gitignore > /dev/null
if [[ $? -ne 0 ]]; then
echo -e "\nvendor/bundle" >> .gitignore
fi
grep -q 'vendor/ruby' .gitignore > /dev/null
if [[ $? -ne 0 ]]; then
echo -e "\nvendor/ruby" >> .gitignore
fi
}
alias b="bundle"
alias bu="b update"
alias be="b exec"
alias binit="bi && bundle package"
alias ba="bundle-audit update && bundle-audit"
# This relies on a global config to force a `--path vendor` whenever `bundle
# install` is executed.
# ----------
# Bundler v1: Be sure to install https://github.com/rmm5t/rbenv-bundle-path-fix
# Bundler v2: Be sure to first run: `bundle config --global path vendor`
function bi {
if [ -f ./vendor/cache ]; then
b install --local $*
else
b install $*
fi
}
############################################################
## Middleman
############################################################
alias m="be middleman"
############################################################
## NPM/Yarn
############################################################
alias y="yarn"
alias yi="yarn install"
alias yu="yarn upgrade"
alias yinit="echo -e \"yarn-offline-mirror \\\"./node_cache\\\"\\nyarn-offline-mirror-pruning true\" >> ./.yarnrc; yi"
############################################################
## Docker
############################################################
alias d="docker"
alias dc="docker-compose"
alias dcr="dc run"
alias docker_rm_all='docker rm $(docker ps -a -q)'
alias dr="docker run -it --rm"
############################################################
## AWS Stuff
############################################################
alias dynamodb-start="docker run -d -p 8000:8000 -v ~/.dynamodb/data:/data --name dynamodb --restart always amazon/dynamodb-local -jar DynamoDBLocal.jar -dbPath /data -sharedDb"
alias dynamodb-stop="docker stop dynamodb && docker rm dynamodb"
alias postgis-start="docker run -d -p 5433:5432 -v ~/.postgis/data:/var/lib/postgresql/data --name postgis -e POSTGRES_PASSWORD=postgres --restart always mdillon/postgis"
alias postgis-stop="docker stop postgis && docker rm postgis"
############################################################
## Heroku
############################################################
function heroku_command {
if [ -z "$*" ]; then
echo "run console"
else
echo "$*"
fi
}
function hdemo {
heroku `heroku_command $*` --remote demo
}
function hdev {
heroku `heroku_command $*` --remote dev
}
function hdev2 {
heroku `heroku_command $*` --remote dev2
}
function hstaging {
heroku `heroku_command $*` --remote staging
}
function hproduction {
heroku `heroku_command $*` --remote production
}
alias deploy_hproduction='hproduction maintenance:on && git push production && hproduction run rake db:migrate && hproduction maintenance:off'
alias deploy_hstaging='hstaging maintenance:on && git push staging && hstaging run rake db:migrate && hstaging maintenance:off'
############################################################
## Kubernetes
############################################################
function kubectl_command {
if [[ "$1" =~ (-w|^$) ]]; then
echo "get pods -o wide $1"
elif [[ "$1" =~ "restart" ]]; then
echo "rollout restart deployment $(basename $PWD)-deployment"
elif [[ "$1" =~ "shell" ]]; then
echo "exec exec --stdin --tty $2"
elif [[ "$1" =~ "context" ]]; then
echo "config use-context $2"
# elif [[ "$1" =~ (deployment ) ]]; then
# echo "$* $(basename $PWD)-deployment"
# elif [[ "$*" =~ (hpa|ingress|service) ]]; then
# echo "$* $(basename $PWD)-dsogenericcharts3"
else
echo ${*/--dryrun/}
fi
}
function k {
cmd="kubectl $(kubectl_command $*) -n $(basename $PWD)"
echo "${COLOR_CYAN}$ $cmd${COLOR_RESET}"
if ! [[ "$*" =~ "--dryrun" ]]; then
$cmd
fi
}
############################################################
## Rails
############################################################
alias tl="tail -f log/development.log"
alias ss="spring status && echo && spring stop"
# Rails 3 or 4
function r {
if [ -e "script/rails" ]; then
script/rails $*
else
rails $* # Assumes ./bin is in the PATH
fi
}
alias restart="touch tmp/restart.txt"
alias refresh="rehash && ss && direnv allow && restart"
alias rr="refresh"
############################################################
## MongoDB
############################################################
alias repair-mongo="rm /usr/local/var/mongodb/mongod.lock && mongod --repair"
############################################################
## Redis
############################################################
alias redis-flushall="redis-cli flushall"
function redis-flushdb() {
redis-cli -n $1 flushdb
}
############################################################
## Media
############################################################
# brew install ffmpeg --with-libvorbis --with-theora --with-fdk-aac --with-tools
function mp32ogg {
file=$1
ffmpeg -i "$file" -c:a libvorbis -q:a 4 $(basename ${file} .mp3).ogg
}
function ogg2mp3 {
file=$1
ffmpeg -i "$file" -c:a libmp3lame $(basename ${file} .ogg).mp3
}
############################################################
## Emacs
############################################################
alias e="emacsclient -nw"
############################################################
## Miscellaneous
############################################################
alias install_ffmpeg='brew install ffmpeg --with-libvorbis --with-theora --with-fdk-aac --with-faac --with-tools'
export GREP_COLOR="1;37;41"
alias grep="grep --color=auto"
alias wgeto="wget -q -O -"
if ! [ `which md5 2> /dev/null` ]; then
alias md5="openssl dgst -md5"
fi
alias sha1="openssl dgst -sha1"
alias sha2="openssl dgst -sha256" # shortcut
alias sha256="openssl dgst -sha256"
alias sha512="openssl dgst -sha512"
alias b64="openssl enc -base64"
alias 256color="export TERM=xterm-256color"
alias dig="dig +noall +answer"
alias flushdns="sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder"
alias whichlinux='uname -a; cat /etc/*release; cat /etc/issue'
alias myip="dig +short myip.opendns.com @resolver1.opendns.com"
alias myip4="curl -s4 http://icanhazip.com/"
alias mylocation="curl -s4 http://ip-api.com/json | prettyjson"
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
}
function color() {
for c; do
tput setab $c
printf ' %03d ' $c
done
tput sgr0
echo
}
function colors() {
x=6
y=40
color {0..7}
color {8..15}
for ((i=0; i<$y; i++)); do
color $(seq $((i*$x+16)) $((i*$x+$x-1+16)))
done
}
# Slow cat down
function scroll() {
# brew install pv
cat $1 | pv --quiet --line-mode --rate-limit 2500
}
############################################################