-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaliases
33 lines (26 loc) · 1.41 KB
/
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
#!/bin/zsh
alias a="ack-grep -k"
alias aa="ack-grep"
alias cp-prod="g co production && g pr && g cherry-pick master && g push && g co master"
alias cp-core-prod="g co core-production && g pr && g cherry-pick core-master && g push && g co core-master"
alias cp-prod-merge="g co production && g pr && g cherry-pick master -m 1 && g push && g co master"
alias du="du -hsc"
alias g="git"
alias gs="git s"
alias gg="gitg -c"
alias ls='ls --color=auto --human-readable'
alias ll='ls -l'
alias scr="/usr/bin/screen -D -RR"
alias serve="python -m SimpleHTTPServer 10100"
alias upgrade="sudo apt-get update && time sudo apt-get -y --force-yes dist-upgrade"
alias canon-count="gphoto2 --get-config /main/status/shuttercounter"
alias mkdir="mkdir -p"
alias xvfb="xvfb-run --auto-servernum -w 1 -s '-screen 0 1024x768x8'"
alias karma-chart="xvfb-run grunt karma-unit --tests='tests/{chart,stock,sparkline}/**/*.js'"
alias karma-chart-once="xvfb-run grunt karma-unit --tests='tests/{chart,stock,sparkline}/**/*.js' --single-run=true"
alias karma-all="xvfb-run grunt karma-unit --single-run=true"
alias karma-all-once="xvfb-run grunt karma-unit --single-run=true"
alias check-meta="node build/kendo-meta.js --check-deps kendo.all.js"
alias record-dojo="byzanz-record -d 8 --delay=5 -x 950 -y 200 -w 950 -h 500 ~/tmp/dojo.gif"
alias x-window="sleep 2 && xwininfo -id $(xdotool getactivewindow)"
alias us-ff="export TZ='America/New_York' && firefox"