forked from xsawyerx/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaliases
37 lines (31 loc) · 946 Bytes
/
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
alias c='clear'
alias sd='sudo -i'
alias ping?='ping 8.8.8.8'
# from xsawyerx
alias vi='vim'
alias ll='ls -al --color=always'
alias sshr='ssh -l root'
alias scpresume='rsync --partial --progress -ae ssh'
alias hosts='sudo vi /etc/hosts'
#alias gf='git flow'
#alias feature='git flow feature'
#alias release='git flow release'
alias realias='$EDITOR ~/.aliases; source ~/.aliases'
alias git-archive-here='git archive --format=tar HEAD | gzip'
alias pod=perldoc
# these are from Yuval Kogman
alias ts="prove --state=slow,save -j3 -r"
alias tf="prove --state=failed,save -v -r"
alias ps?='ps -ef | grep'
alias s='sudo'
# git
alias g='git'
alias gs='git status'
alias gd='git df'
alias go='git co'
alias gb='git br'
alias gc='git ci'
alias minicpanm='cpanm --mirror ~/code/personal/minicpan --mirror-only'
alias fixbluetooth='sudo rfkill unblock bluetooth'
# Unity control panel on i3
alias ucp='XDG_CURRENT_DESKTOP=Unity unity-control-center'