Mercurial > hg > config
annotate .bashrc @ 622:b18008a2b8fe
STUB: .bashrc
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 05 Feb 2014 11:23:06 -0800 |
parents | 0dee1fcf3292 |
children | 69babe3ef8a7 |
rev | line source |
---|---|
334
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
1 #!/bin/bash |
379 | 2 |
334
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
3 ### bash rc file ### |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
4 |
379 | 5 # source the profile, if it exists |
332 | 6 PROFILE=/etc/profile |
7 if [ -e "${PROFILE}" ] | |
8 then | |
9 . "${PROFILE}" | |
10 fi | |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
11 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
12 # Test for an interactive shell. There is no need to set anything |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
13 # past this point for scp and rcp, and it's important to refrain from |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
14 # outputting anything in those cases. |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
15 if [[ $- != *i* ]] ; then |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
16 # Shell is non-interactive. Be done now! |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
17 return |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
18 fi |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
19 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
20 # Enable colors for ls, etc. Prefer ~/.dir_colors #64489 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
21 if [[ -f ~/.dir_colors ]] ; then |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
22 eval $(dircolors -b ~/.dir_colors) |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
23 elif [[ -f /etc/DIR_COLORS ]] ; then |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
24 eval $(dircolors -b /etc/DIR_COLORS) |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
25 fi |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
26 |
67
a791d862148c
add a default MOZCONFIG variable -- BE CAREFUL!
Jeff Hammel <jhammel@mozilla.com>
parents:
66
diff
changeset
|
27 # variables |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
28 export BROWSER=$(which firefox) |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
29 export CLICOLOR=1 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
30 export EDITOR='emacs -nw' |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
31 export JS_EDITLINE=1 |
510 | 32 export JS_EDITLINE=1 |
33 | |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
34 # aliases |
564 | 35 alias awd="python -c 'import os; print (os.path.realpath(\".\"))'" |
514 | 36 alias currentpatch='echo `hg root`/.hg/patches/`hg qapp -v | tail -n 1 | cut -f 3 -d " "`' |
246
d9b8d176c449
add a thing to get the full path to current patch and start organizing aliases
Jeff Hammel <jhammel@mozilla.com>
parents:
241
diff
changeset
|
37 alias datestamp='date +%Y%m%d%H%M%S' |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
38 alias grep='grep --colour=auto' |
246
d9b8d176c449
add a thing to get the full path to current patch and start organizing aliases
Jeff Hammel <jhammel@mozilla.com>
parents:
241
diff
changeset
|
39 alias ls='ls --color=auto' |
379 | 40 alias patch='patch --reject-file=-' |
564 | 41 alias random="python -c 'import sys, random; foo = sys.argv[1:]; random.shuffle(foo); print (\" \".join(foo)')" |
431 | 42 alias straceff="attach.py firefox --kill" |
314 | 43 alias weekstamp="date --date=\"$((`date '+%u'`-1)) days ago\" '+%b %d'" |
250 | 44 alias wget='wget --no-check-certificate' |
88
24f933c9d97f
add an xpcshell alias, silly ubuntu installed version is fuxored
Jeff Hammel <jhammel@mozilla.com>
parents:
86
diff
changeset
|
45 alias xpcshell="LD_LIBRARY_PATH=${MOZOBJ}/dist/bin ${MOZOBJ}/dist/bin/xpcshell" |
535 | 46 if [ -e ~/.bashttw ] |
47 then | |
48 . ~/.bashttw | |
49 fi | |
241 | 50 |
51 # bzconsole aliases for filing bugs | |
52 alias mozbase-bug="bz new Mozbase --cc ':wlach'" | |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
53 alias mozbuild-bug="bz new --product Core 'Build Config' --cc ':gps'" |
540 | 54 alias mozharness-bug="bz new --product 'Release Engineering' 'General Automation' --cc ':aki' --whiteboard 'mozharness'" |
537 | 55 alias talos-bug="bz new Talos --cc ':jmaher'" |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
56 |
548 | 57 # notification: from |
58 # http://www.netinfinity.org/2013/02/4/bits-and-pieces-ubuntu-terminal-notification.html | |
59 alias alert_helper='history|tail -n1|sed -e "s/^\s*[0-9]\+\s*//" -e "s/;\s*alert$//"' | |
60 alias alert='notify-send -i /usr/share/icons/gnome/32x32/apps/gnome-terminal.png "[$?] $(alert_helper)"' | |
61 | |
62 | |
66 | 63 # PROMPT |
119 | 64 PS1='│' |
65 PS2='.' | |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
66 PROMPT_COMMAND='echo -ne "\033]0;${SSH_CLIENT/*/$HOSTNAME:}${PWD/~/~}\007"' |
415 | 67 # Alt: PS2='☰', PS1='🎩 ' |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
68 |
66 | 69 # PATHs |
583 | 70 export PATH=~/firefox:~/bin:~/bin/mozilla:~/python:$PATH:/usr/sbin:/usr/games/bin:~/virtualenv:~/silvermirror/bin:~/smartopen/bin:~/k0s/bin:~/docs/project/ims/workflow:~/cognet/bin |
169
ab2fc6222f94
add virtualenv to the PYTHONPATH
Jeff Hammel <jhammel@mozilla.com>
parents:
167
diff
changeset
|
71 export PYTHONPATH=~/python:$PYTHONPATH:~/virtualenv |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
72 |
84 | 73 ### functions |
74 | |
349 | 75 lspath() { |
564 | 76 python -c 'import os; print ("\n".join(os.environ["PATH"].split(os.path.pathsep)))' |
349 | 77 } |
78 | |
305
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
79 apply-patch() { |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
80 # apply a patch |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
81 # TODO: |
331 | 82 # - rewrite in python! |
305
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
83 # - extract this general pattern as a bash "decorator" like `lsdiff` in .bash_overrides |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
84 # - right now level=1; make this configurable (somehow) |
331 | 85 |
305
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
86 if (( ! $# )) |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
87 then |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
88 echo "No patch supplied" |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
89 return 1 |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
90 fi |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
91 |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
92 for patch in $@ |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
93 do |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
94 if expr "$1" : 'http[s]\?://.*' &> /dev/null |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
95 then |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
96 IS_URL="true" |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
97 else |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
98 IS__URL="false" |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
99 fi |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
100 |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
101 if [[ ${IS_URL} == "true" ]] |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
102 then |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
103 if curl --location "${patch}" 2> /dev/null | (command patch -p1 --dry-run &> /dev/null) |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
104 then |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
105 curl --location "${patch}" 2> /dev/null | command patch -p1 |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
106 continue |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
107 else |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
108 echo "curl --location ${patch} 2> /dev/null | command patch -p1 --dry-run" |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
109 curl --location "${patch}" 2> /dev/null | command patch -p1 --dry-run |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
110 return $? |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
111 fi |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
112 else |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
113 if patch -p1 --dry-run < ${patch} |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
114 then |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
115 patch -p1 < ${patch} |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
116 continue |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
117 else |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
118 echo "patch -p1 --dry-run < ${patch}" |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
119 patch -p1 --dry-run < ${patch} |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
120 return $? |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
121 fi |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
122 fi |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
123 done |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
124 } |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
125 |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
126 cdwin() { |
305
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
127 # change directory to a window's location using its title, |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
128 # as that is set to the cwd by PS1 [?] |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
129 # TODO: ssh windows |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
130 DIR=$(xwininfo | dictify.py xwininfo | awk '{ print $NF }' | sed 's/"//g') |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
131 DIR=${DIR/\~/$HOME} |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
132 cd $DIR |
532 | 133 activate-nearest |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
134 } |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
135 |
66 | 136 function colors() { |
137 | |
138 CLR_WHITE="\033[0;37m" | |
139 CLR_WHITEBOLD="\033[1;37m" | |
140 CLR_BLACK="\033[0;30m" | |
141 CLR_GRAY="\033[1;30m" | |
142 CLR_BLUE="\033[1;34m" | |
143 CLR_BLUEBOLD="\033[0;34m" | |
144 CLR_GREEN="\033[0;32m" | |
145 CLR_GREENBOLD="\033[1;32m" | |
146 CLR_CYAN="\033[0;36m" | |
147 CLR_CYANBOLD="\033[1;36m" | |
148 CLR_RED="\033[0;31m" | |
149 CLR_REDBOLD="\033[1;31m" | |
150 CLR_PURPLE="\033[0;35m" | |
151 CLR_PURPLEBOLD="\033[1;35m" | |
152 CLR_YELLOW="\033[0;33m" | |
153 CLR_YELLOWBOLD="\033[1;33m" | |
154 CLR_NOTHING="\033[0m" | |
155 } | |
156 colors | |
157 | |
418 | 158 |
534 | 159 ### find functionality |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
160 |
303
266d6b337373
still doesnt work but what the fuck
Jeff Hammel <jhammel@mozilla.com>
parents:
296
diff
changeset
|
161 EXCLUDES="(\.svn)|(\.mo$)|(\.po$)|(\.pyc$)|(\.hg$)|(\.git$)" |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
162 ff() { |
304
7ed290454f50
random cleanup but not much
Jeff Hammel <jhammel@mozilla.com>
parents:
303
diff
changeset
|
163 # nice fast find function |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
164 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
165 if (( $# < 2 )) |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
166 then |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
167 FILENAME='*' # default -- look in all files |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
168 else |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
169 FILENAME=$2 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
170 fi |
76 | 171 CMD='command find -L $PWD -iname "${FILENAME}" -print0 2> /dev/null | xargs -r0 grep -il "$1" 2> /dev/null | egrep -v "${EXCLUDES}" 2> /dev/null' |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
172 # echo $CMD |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
173 eval $CMD |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
174 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
175 } |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
176 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
177 chainff() { |
304
7ed290454f50
random cleanup but not much
Jeff Hammel <jhammel@mozilla.com>
parents:
303
diff
changeset
|
178 # chained fast find |
7ed290454f50
random cleanup but not much
Jeff Hammel <jhammel@mozilla.com>
parents:
303
diff
changeset
|
179 |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
180 if (( $# < 2 )) |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
181 then |
304
7ed290454f50
random cleanup but not much
Jeff Hammel <jhammel@mozilla.com>
parents:
303
diff
changeset
|
182 return 1 # bad invocation |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
183 fi |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
184 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
185 RESULTS=`ff "$2" "$1"` |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
186 shift 2 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
187 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
188 for i in $RESULTS |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
189 do |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
190 for arg in $@ |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
191 do |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
192 if grep -il "$arg" "$i" &> /dev/null |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
193 then |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
194 touch /dev/null |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
195 else |
260
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
196 i="" |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
197 break |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
198 fi |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
199 done |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
200 if [ -n "$i" ] |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
201 then |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
202 echo $i |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
203 fi |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
204 done |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
205 } |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
206 |
304
7ed290454f50
random cleanup but not much
Jeff Hammel <jhammel@mozilla.com>
parents:
303
diff
changeset
|
207 |
66 | 208 cff () { |
304
7ed290454f50
random cleanup but not much
Jeff Hammel <jhammel@mozilla.com>
parents:
303
diff
changeset
|
209 # contextual fastfind |
66 | 210 if (( $# < 2 )); then |
211 local FILENAME='*' # default -- look in all files | |
212 else | |
213 local FILENAME=$2 | |
214 fi | |
215 | |
216 for i in `ff "$1" "$FILENAME"`; do | |
217 echo -e "$CLR_GREEN--->>> ""$CLR_YELLOWBOLD""$i""$CLR_NOTHING" : | |
218 grep --color=auto -i -n -C 3 "$1" $i | |
219 done | |
220 | |
260
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
221 } |
66 | 222 |
539 | 223 ### functions for files |
224 | |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
225 tmpfile() { |
305
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
226 # make a temporary file if `tempfile` not available |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
227 |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
228 if [ "$#" == "0" ] |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
229 then |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
230 args="tmp" |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
231 else |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
232 args=$@ |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
233 fi |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
234 |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
235 for i in $args |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
236 do |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
237 NEWNAME=${i}.$RANDOM |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
238 |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
239 while [ -e $NEWNAME ] |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
240 do |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
241 NEWNAME=${NEWNAME}.tmp |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
242 done |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
243 echo "$NEWNAME" |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
244 done |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
245 } |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
246 |
565 | 247 abspath() { |
248 python -c "import os; print (os.path.realpath('$*'))" | |
249 } | |
250 | |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
251 fn() { |
565 | 252 # put full name on clipboard and echo it |
253 python -c "import os; print (os.path.realpath('$*'))" | xclip -i | |
254 xclip -o | |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
255 } |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
256 |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
257 swap() { |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
258 # swap two files |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
259 if [ "$#" != "2" ] |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
260 then |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
261 echo "Usage: $FUNCNAME <file1> <file2>" |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
262 return |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
263 fi |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
264 for i in "$1" "$2" |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
265 do |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
266 if [ ! -w "$i" ] |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
267 then |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
268 echo "$FUNCNAME: Can't move $i" |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
269 return 1 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
270 fi |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
271 done |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
272 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
273 NEWNAME=`basename $1`.$RANDOM |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
274 while [ -e $NEWNAME ] |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
275 do |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
276 NEWNAME=${NEWNAME}.tmp |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
277 echo "$NEWNAME" |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
278 done |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
279 |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
280 mv "$1" "$NEWNAME" |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
281 mv "$2" "$1" |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
282 mv "$NEWNAME" "$2" |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
283 } |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
284 |
560 | 285 verifyfiles() { |
286 # verify each line is an existing file | |
287 while read line | |
288 do | |
289 test -e "${line}" | |
290 echo $? $line | |
291 done | |
292 } | |
539 | 293 |
294 ### functions for editing | |
295 | |
296 edpe() { | |
297 # edit and pipe the buffer to stdout | |
298 FILE=`tmpfile` | |
299 $EDITOR $FILE | |
300 cat $FILE | |
301 rm $FILE | |
302 } | |
303 | |
304 eend() { | |
305 # edit the end of a file with emacs | |
306 FILE=$1 | |
307 shift | |
308 emacs +`wc -l "$FILE"` $@ | |
309 } | |
310 | |
311 | |
312 ### functions for processes | |
313 | |
314 isrunning() { | |
315 # is a process running? (by name) | |
316 # see also: talos for a better version | |
317 for i in "$@" | |
318 do | |
319 ps axwww | grep "$i" | grep -v 'grep' | |
320 done | sort | uniq | |
321 | |
322 } | |
323 | |
324 killbyname() { | |
325 # kill a process by name | |
326 kill `isrunning "$@" | awk '{ print $1 }' | onelineit.py` | |
327 } | |
328 | |
329 ### | |
330 | |
330 | 331 buffer() { |
332 # temporary buffer with cat and /dev/null | |
333 cat > /dev/null | |
334 } | |
335 | |
309 | 336 ### `which` commands |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
337 |
309 | 338 realwhich() { |
339 # which -> real paths | |
340 command which $@ | while read line | |
341 do | |
564 | 342 python -c "import os; print (os.path.realpath('${line}'))" |
309 | 343 done |
344 } | |
345 | |
310
a6cd6900419e
whview and whemacs use realwhich
Jeff Hammel <jhammel@mozilla.com>
parents:
309
diff
changeset
|
346 whview() { |
a6cd6900419e
whview and whemacs use realwhich
Jeff Hammel <jhammel@mozilla.com>
parents:
309
diff
changeset
|
347 # which view |
a6cd6900419e
whview and whemacs use realwhich
Jeff Hammel <jhammel@mozilla.com>
parents:
309
diff
changeset
|
348 less `realwhich $@` |
a6cd6900419e
whview and whemacs use realwhich
Jeff Hammel <jhammel@mozilla.com>
parents:
309
diff
changeset
|
349 } |
a6cd6900419e
whview and whemacs use realwhich
Jeff Hammel <jhammel@mozilla.com>
parents:
309
diff
changeset
|
350 |
a6cd6900419e
whview and whemacs use realwhich
Jeff Hammel <jhammel@mozilla.com>
parents:
309
diff
changeset
|
351 whemacs() { |
a6cd6900419e
whview and whemacs use realwhich
Jeff Hammel <jhammel@mozilla.com>
parents:
309
diff
changeset
|
352 # which emacs |
a6cd6900419e
whview and whemacs use realwhich
Jeff Hammel <jhammel@mozilla.com>
parents:
309
diff
changeset
|
353 emacs -nw `realwhich $@` |
a6cd6900419e
whview and whemacs use realwhich
Jeff Hammel <jhammel@mozilla.com>
parents:
309
diff
changeset
|
354 } |
a6cd6900419e
whview and whemacs use realwhich
Jeff Hammel <jhammel@mozilla.com>
parents:
309
diff
changeset
|
355 |
569 | 356 lswhich() { |
357 # ls -l real which | |
358 for i in "$@" | |
359 do | |
360 ls -l $(realwhich $i) | |
361 done | |
362 } | |
561 | 363 |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
364 ### functions for python |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
365 |
305
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
366 pyfile() { |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
367 # python file path |
564 | 368 python -c "import $1; print ($1.__file__)" |
305
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
369 } |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
370 |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
371 setup-all() { |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
372 # setup all for development |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
373 # TODO: flowerbed? |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
374 for i in * |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
375 do |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
376 if [ -e "${i}/setup.py" ] |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
377 then |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
378 cd "${i}" |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
379 python setup.py develop |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
380 cd .. |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
381 fi |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
382 done |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
383 } |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
384 |
561 | 385 distribute() { |
386 python setup.py egg_info -RDb "" sdist register upload develop | |
387 } | |
388 | |
531 | 389 nearest-venv() { |
390 if [[ "$#" == "0" ]] | |
391 then | |
392 directory=$PWD | |
393 else | |
394 directory=$1 | |
395 fi | |
564 | 396 directory=$(python -c "import os; print (os.path.abspath('${directory}'))") |
531 | 397 |
398 while [[ "${directory}" != "/" ]] | |
399 do | |
400 activate="${directory}/bin/activate" | |
401 if [ -e "${activate}" ] | |
402 then | |
403 echo ${directory} | |
404 return 0 | |
405 fi | |
406 | |
407 directory=$(dirname ${directory}) | |
408 | |
409 done | |
410 return 1 | |
411 } | |
412 | |
413 activate-nearest() { | |
414 nearest=$(nearest-venv) | |
415 activate=${nearest}/bin/activate | |
416 if [ -e "${activate}" ] | |
417 then | |
418 . ${activate} | |
419 fi | |
420 } | |
421 | |
296 | 422 recreate-venv() { |
423 # recreate a virtualenv | |
424 VIRTUALENV="virtualenv.py" | |
334
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
425 if ! which ${VIRTUALENV} |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
426 then |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
427 return 1 |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
428 fi |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
429 VENV_PATH=$(which ${VIRTUALENV} &> /dev/null) |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
430 |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
431 # update virtualenv if possible |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
432 DIRNAME=$(dirname ${VENV_PATH}) |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
433 if [ -d "${DIRNAME}/.git" ] |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
434 then |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
435 cd "${DIRNAME}" |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
436 git pull |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
437 cd -- |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
438 fi |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
439 |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
440 |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
441 # for each virtualenv given... |
296 | 442 for i in $@ |
443 do | |
334
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
444 # ...recreate it... |
296 | 445 ${VIRTUALENV} --clear "${i}" |
446 | |
447 SRCDIR="${i}"/src | |
448 if [ -d "${SRCDIR}" ] | |
449 then | |
450 . "${i}/bin/activate" | |
451 OLDPWD=${PWD} | |
452 cd "${SRCDIR}" | |
453 for j in * | |
454 do | |
455 if [ -e "${j}"/setup.py ] | |
456 then | |
457 cd "${j}" | |
458 python setup.py develop | |
459 cd .. | |
460 fi | |
461 done | |
462 cd "${OLDPWD}" | |
463 fi | |
464 done | |
465 } | |
466 | |
260
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
467 ### functions for version control systems |
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
468 |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
469 svndance(){ |
71
3d111401010f
add a function to view the files in a diff
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
470 # do the svn import dance! |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
471 if (( $# )) |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
472 then |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
473 svn import $1 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
474 cd .. |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
475 rm -rf $OLDPWD |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
476 svn co $1 $OLDPWD |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
477 cd $OLDPWD |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
478 else |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
479 return 1 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
480 fi |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
481 } |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
482 |
71
3d111401010f
add a function to view the files in a diff
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
483 difffiles() { |
534 | 484 # which files are diffed; could use `lsdiff` |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
485 grep '^+++ ' $@ | sed 's/+++ b\///' |
71
3d111401010f
add a function to view the files in a diff
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
486 } |
3d111401010f
add a function to view the files in a diff
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
487 |
534 | 488 git-diff-master() { |
489 # differences of a git repository with master | |
490 git diff $(git merge-base HEAD master) | |
491 } | |
492 | |
493 git-diff-total() { | |
494 # diff of both added + modified files | |
495 combinediff <(git diff) <(git diff --cached) | |
496 } | |
497 | |
563 | 498 hg-add-commit() { |
499 # add a file + commit | |
500 MESSAGE=$(hg add $@) | |
501 hg commit -m "${MESSAGE}" | |
502 } | |
503 | |
260
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
504 hg-update-all() { |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
505 # update all hg repositories in the current directory |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
506 for i in *; |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
507 do |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
508 if [ -e $i/.hg ] |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
509 then |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
510 cd $i |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
511 hg pull |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
512 hg update |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
513 cd - |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
514 fi |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
515 done |
84 | 516 } |
517 | |
110
bf567a0e8fef
add a hg-qcommit that does the right thing
Jeff Hammel <jhammel@mozilla.com>
parents:
103
diff
changeset
|
518 hg-qcommit() { |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
519 message=$1 |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
520 hg qrefresh |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
521 if [ -z "${message}" ] |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
522 then |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
523 hg qcommit |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
524 else |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
525 hg qcommit -m "${message}" |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
526 fi |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
527 hgroot=$(hg root) |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
528 patches=${hgroot}/.hg/patches/ |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
529 if [ -e ${patches}.hg ] |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
530 then |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
531 cd ${patches} |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
532 hg push |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
533 fi |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
534 cd - |
110
bf567a0e8fef
add a hg-qcommit that does the right thing
Jeff Hammel <jhammel@mozilla.com>
parents:
103
diff
changeset
|
535 } |
bf567a0e8fef
add a hg-qcommit that does the right thing
Jeff Hammel <jhammel@mozilla.com>
parents:
103
diff
changeset
|
536 |
89
dfda4f7d4db4
add a command to generate those hgrc files i always need
Jeff Hammel <jhammel@mozilla.com>
parents:
88
diff
changeset
|
537 |
260
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
538 ### functions for web content |
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
539 |
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
540 blog-file() { |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
541 echo "$HOME/web/blog/k0s/entries/public/$1" |
260
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
542 } |
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
543 |
330 | 544 ### |
545 | |
101 | 546 flatten() { |
547 directory=$PWD | |
548 if [ "$#" == "1" ] | |
549 then | |
550 directory=$1 | |
551 fi | |
552 cd $directory | |
553 unset find # don't use the alias | |
102 | 554 find . -name '*' -type f | sed 's/.\///' | while read line |
101 | 555 do |
556 filename=$(echo $line | sed 's/\//-/g') | |
557 mv "${line}" "${filename}" | |
558 done | |
559 for i in * | |
560 do | |
561 if [ -d $i ] | |
562 then | |
563 rm -rf "${i}" | |
564 fi | |
565 done | |
566 } | |
567 | |
103
e841c419199e
add process command to get filehandles
Jeff Hammel <jhammel@mozilla.com>
parents:
102
diff
changeset
|
568 filehandles() { |
e841c419199e
add process command to get filehandles
Jeff Hammel <jhammel@mozilla.com>
parents:
102
diff
changeset
|
569 TMPFILE=$(tmpfile) |
e841c419199e
add process command to get filehandles
Jeff Hammel <jhammel@mozilla.com>
parents:
102
diff
changeset
|
570 ps -e|grep -v TTY|awk {'print "echo -n \"Process: "$4"\tPID: "$1"\tNumber of FH: \"; lsof -p "$1"|wc -l"'} > ${TMPFILE} |
e841c419199e
add process command to get filehandles
Jeff Hammel <jhammel@mozilla.com>
parents:
102
diff
changeset
|
571 . ${TMPFILE} | sort |
e841c419199e
add process command to get filehandles
Jeff Hammel <jhammel@mozilla.com>
parents:
102
diff
changeset
|
572 rm ${TMPFILE} |
e841c419199e
add process command to get filehandles
Jeff Hammel <jhammel@mozilla.com>
parents:
102
diff
changeset
|
573 } |
e841c419199e
add process command to get filehandles
Jeff Hammel <jhammel@mozilla.com>
parents:
102
diff
changeset
|
574 |
167
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
575 quotemail() { |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
576 |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
577 command='s/^/> /' |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
578 inplace="" |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
579 if [ "$#" == "2" ] |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
580 then |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
581 inplace="-i" |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
582 fi |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
583 |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
584 sed ${inplace} "${command}" "$1" |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
585 |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
586 } |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
587 |
317 | 588 rmktmp() { |
589 | |
590 TMPDIR=~/tmp | |
591 if [ -e ${TMPDIR} ] | |
592 then | |
593 rm -rf ${TMPDIR} | |
594 fi | |
595 mkdir ${TMPDIR} | |
596 cd ${TMPDIR} | |
597 pwd | |
598 | |
599 } | |
600 | |
546 | 601 exists() { |
602 while read line; do echo ${line} : $(($(test "-e ${line}"\") )); done | |
603 } | |
604 | |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
605 ### include overrides for commands |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
606 source ~/.bash_overrides |
47
a0636527f809
regenerate fluxbox menus on shell
Jeff Hammel <k0scist@gmail.com>
parents:
19
diff
changeset
|
607 |
622 | 608 ### cognet customizations |
609 export BASTION_SERVER=bastion-east-1c.cognet.tv | |
610 export KEYS_DIR=/home/jhammel/.ssh | |
555 | 611 |
47
a0636527f809
regenerate fluxbox menus on shell
Jeff Hammel <k0scist@gmail.com>
parents:
19
diff
changeset
|
612 ### regenerate fluxbox menus here for convenience |
531 | 613 if type deactivate &> /dev/null |
614 then | |
615 deactivate | |
616 fi | |
47
a0636527f809
regenerate fluxbox menus on shell
Jeff Hammel <k0scist@gmail.com>
parents:
19
diff
changeset
|
617 MENU=~/web/site/programs.html |
237
b33d0c78132c
move menu regeneration to its own function
Jeff Hammel <jhammel@mozilla.com>
parents:
224
diff
changeset
|
618 regeneratefluxmenu() { |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
619 if [ -e $MENU ] |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
620 then |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
621 # XXX could be safer |
303
266d6b337373
still doesnt work but what the fuck
Jeff Hammel <jhammel@mozilla.com>
parents:
296
diff
changeset
|
622 # XXX ...along with the fluxbox menu option o_O |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
623 html2flux.py $MENU > ~/.fluxbox/applications |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
624 fi |
237
b33d0c78132c
move menu regeneration to its own function
Jeff Hammel <jhammel@mozilla.com>
parents:
224
diff
changeset
|
625 } |
b33d0c78132c
move menu regeneration to its own function
Jeff Hammel <jhammel@mozilla.com>
parents:
224
diff
changeset
|
626 regeneratefluxmenu |