-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaliases
More file actions
34 lines (34 loc) · 1.57 KB
/
Copy pathaliases
File metadata and controls
34 lines (34 loc) · 1.57 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
alias realias='vim ~/.aliases; source ~/.aliases'
alias vimclean='find .|egrep "\.[^\/]+\.swp"|xargs rm'
alias sds='svn diff|diffstat'
alias sdl='svn diff|less'
alias sd='svn diff'
alias sc='svn commit'
alias sup='svn up'
alias git="git-achievements"
alias g="git-achievements"
alias gd='git diff|colordiff'
alias gds='git diff|diffstat'
alias gdl='git diff|colordiff|less -R'
alias gcap='git commit -a && git push'
alias ack='ack-grep'
alias acka='ack-grep --all'
alias cg='valgrind --tool=callgrind --dump-instr=yes --collect-jumps=yes'
alias maek='make'
alias mj='TEST_JOBS=9 make -j9'
alias mjc='TEST_JOBS=9 make -j9 clean'
alias mjr='TEST_JOBS=9 make -j9 realclean'
alias pc='perl Configure.pl'
alias pco='perl Configure.pl --optimize'
alias pcp='perl Configure.pl --cc=g++ --link=g++ --ld=g++'
alias pcop='perl Configure.pl --cc=g++ --link=g++ --ld=g++ --optimize'
alias opfix='svn revert src/ops/core_ops.c include/parrot/oplib/core_ops.h'
alias top='htop'
alias remake='perl tools/dev/reconfigure.pl --step=gen::makefiles'
alias psu='parrot setup.pir'
alias spsu='sudo parrot setup.pir'
alias firefox_fkill='ps aux|grep flash|grep firefox|sed -e "s/cotto[ ]*//" -e "s/ .*//"|xargs kill'
alias chromium_fkill='ps aux|grep flash|grep chromium|sed -e "s/cotto[ ]*//" -e "s/ .*//"|xargs kill'
alias wgetnc='wget --no-check-certificate'
alias vgp='valgrind --tool=callgrind --dump-instr=yes --collect-jumps=yes --collect-systime=yes'
alias mg='valgrind --suppressions=~/dev/parrot/tools/dev/parrot.supp --num-callers=500 --leak-check=full --leak-resolution=high --show-reachable=yes parrot --leak-test'