comparison .bashrc @ 250:6f3d12f17847

order aliases
author Jeff Hammel <jhammel@mozilla.com>
date Sat, 01 Dec 2012 19:08:58 -0800
parents d9b8d176c449
children eacc4c5ed628
comparison
equal deleted inserted replaced
249:12299cbc45ee 250:6f3d12f17847
22 export MOZSOURCE=~/mozilla/src/mozilla-central 22 export MOZSOURCE=~/mozilla/src/mozilla-central
23 export MOZOBJ=~/mozilla/src/obj-browser 23 export MOZOBJ=~/mozilla/src/obj-browser
24 export JS_EDITLINE=1 24 export JS_EDITLINE=1
25 25
26 # aliases 26 # aliases
27 alias awd="python -c 'import os; print os.path.realpath(\".\")'"
27 alias currentpatch='echo `hg root`/.hg/patches/`hg qapp -v | head -n 1 | cut -f 3 -d " "`' 28 alias currentpatch='echo `hg root`/.hg/patches/`hg qapp -v | head -n 1 | cut -f 3 -d " "`'
28 alias datestamp='date +%Y%m%d%H%M%S' 29 alias datestamp='date +%Y%m%d%H%M%S'
30 alias distribute='python setup.py egg_info -RDb "" sdist register upload'
29 alias grep='grep --colour=auto' 31 alias grep='grep --colour=auto'
30 alias ls='ls --color=auto' 32 alias ls='ls --color=auto'
33 alias random="python -c 'import sys, random; foo = sys.argv[1:]; random.shuffle(foo); print \" \".join(foo)'"
34 alias svnst='svn st | grep -v "^\?"'
31 alias wget='wget --no-check-certificate' 35 alias wget='wget --no-check-certificate'
32 alias svnst='svn st | grep -v "^\?"'
33 alias awd="python -c 'import os; print os.path.realpath(\".\")'"
34 alias distribute='python setup.py egg_info -RDb "" sdist register upload'
35 alias random="python -c 'import sys, random; foo = sys.argv[1:]; random.shuffle(foo); print \" \".join(foo)'"
36 alias xpcshell="LD_LIBRARY_PATH=${MOZOBJ}/dist/bin ${MOZOBJ}/dist/bin/xpcshell" 36 alias xpcshell="LD_LIBRARY_PATH=${MOZOBJ}/dist/bin ${MOZOBJ}/dist/bin/xpcshell"
37 37
38 # bzconsole aliases for filing bugs 38 # bzconsole aliases for filing bugs
39 alias mozbase-bug="bz new Mozbase --cc ':wlach'" 39 alias mozbase-bug="bz new Mozbase --cc ':wlach'"
40 alias mozharness-bug="bz new 'Release Engineering: Automation (General)' --cc ':aki' --whiteboard 'mozharness'" 40 alias mozharness-bug="bz new 'Release Engineering: Automation (General)' --cc ':aki' --whiteboard 'mozharness'"