Mercurial > hg > config
annotate .bashrc @ 843:8270a1e4eeed
[PATH] cleanup paths a bit
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 13 Aug 2017 14:59:59 -0700 |
parents | 51635d21bbb0 |
children | d18c46e3a89d |
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 |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
33 # aliases |
564 | 34 alias awd="python -c 'import os; print (os.path.realpath(\".\"))'" |
514 | 35 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
|
36 alias datestamp='date +%Y%m%d%H%M%S' |
705 | 37 alias envkeys='env | sed "s/=.*//" | sort' |
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' |
736 | 39 alias loopmplayer='mplayer -fixed-vo -loop 0 -fs' |
40 alias loopxine='xine -f -g -l' | |
696 | 41 alias lsenv='env | sort | less' |
697 | 42 alias mslower='mplayer -osd-fractions 1 -speed 0.1 -osdlevel 3' |
379 | 43 alias patch='patch --reject-file=-' |
769 | 44 alias random="python -c 'import sys, random; foo = sys.argv[1:]; random.shuffle(foo); print (\" \".join(foo))'" |
819 | 45 alias sshlax='ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null' |
314 | 46 alias weekstamp="date --date=\"$((`date '+%u'`-1)) days ago\" '+%b %d'" |
250 | 47 alias wget='wget --no-check-certificate' |
535 | 48 if [ -e ~/.bashttw ] |
49 then | |
50 . ~/.bashttw | |
51 fi | |
241 | 52 |
548 | 53 # notification: from |
54 # http://www.netinfinity.org/2013/02/4/bits-and-pieces-ubuntu-terminal-notification.html | |
55 alias alert_helper='history|tail -n1|sed -e "s/^\s*[0-9]\+\s*//" -e "s/;\s*alert$//"' | |
56 alias alert='notify-send -i /usr/share/icons/gnome/32x32/apps/gnome-terminal.png "[$?] $(alert_helper)"' | |
57 | |
58 | |
66 | 59 # PROMPT |
749 | 60 PS1='# ' |
61 PS2='. ' | |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
62 PROMPT_COMMAND='echo -ne "\033]0;${SSH_CLIENT/*/$HOSTNAME:}${PWD/~/~}\007"' |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
63 |
66 | 64 # PATHs |
843 | 65 export PATH=~/firefox:~/bin:~/bin/mozilla:~/python:$PATH:/usr/sbin:/usr/games/bin:~/virtualenv |
66 export PYTHONPATH=~/python:$PYTHONPATH | |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
67 |
759
f632a9850bb8
lookie, i can has x platform
Jeff Hammel <k0scist@gmail.com>
parents:
755
diff
changeset
|
68 # clipboard |
f632a9850bb8
lookie, i can has x platform
Jeff Hammel <k0scist@gmail.com>
parents:
755
diff
changeset
|
69 if which xclip &> /dev/null |
f632a9850bb8
lookie, i can has x platform
Jeff Hammel <k0scist@gmail.com>
parents:
755
diff
changeset
|
70 then |
f632a9850bb8
lookie, i can has x platform
Jeff Hammel <k0scist@gmail.com>
parents:
755
diff
changeset
|
71 export CLIP_COPY="xclip -i" |
f632a9850bb8
lookie, i can has x platform
Jeff Hammel <k0scist@gmail.com>
parents:
755
diff
changeset
|
72 export CLIP_PASTE="xclip -o" |
f632a9850bb8
lookie, i can has x platform
Jeff Hammel <k0scist@gmail.com>
parents:
755
diff
changeset
|
73 elif which pbcopy &> /dev/null |
f632a9850bb8
lookie, i can has x platform
Jeff Hammel <k0scist@gmail.com>
parents:
755
diff
changeset
|
74 then |
f632a9850bb8
lookie, i can has x platform
Jeff Hammel <k0scist@gmail.com>
parents:
755
diff
changeset
|
75 export CLIP_COPY="pbcopy" |
f632a9850bb8
lookie, i can has x platform
Jeff Hammel <k0scist@gmail.com>
parents:
755
diff
changeset
|
76 export CLIP_PASTE="pbpaste" |
f632a9850bb8
lookie, i can has x platform
Jeff Hammel <k0scist@gmail.com>
parents:
755
diff
changeset
|
77 else |
f632a9850bb8
lookie, i can has x platform
Jeff Hammel <k0scist@gmail.com>
parents:
755
diff
changeset
|
78 export CLIP_COPY="tee" |
f632a9850bb8
lookie, i can has x platform
Jeff Hammel <k0scist@gmail.com>
parents:
755
diff
changeset
|
79 export CLIP_PASTE="true" |
f632a9850bb8
lookie, i can has x platform
Jeff Hammel <k0scist@gmail.com>
parents:
755
diff
changeset
|
80 fi |
f632a9850bb8
lookie, i can has x platform
Jeff Hammel <k0scist@gmail.com>
parents:
755
diff
changeset
|
81 |
84 | 82 ### functions |
83 | |
695 | 84 gplot() { |
85 | |
86 gnuplot -persist <(echo plot '"'$1'"') | |
87 } | |
88 | |
349 | 89 lspath() { |
564 | 90 python -c 'import os; print ("\n".join(os.environ["PATH"].split(os.path.pathsep)))' |
349 | 91 } |
92 | |
305
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
93 apply-patch() { |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
94 # apply a patch |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
95 # TODO: |
331 | 96 # - rewrite in python! |
305
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
97 # - 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
|
98 # - right now level=1; make this configurable (somehow) |
331 | 99 |
305
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
100 if (( ! $# )) |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
101 then |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
102 echo "No patch supplied" |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
103 return 1 |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
104 fi |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
105 |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
106 for patch in $@ |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
107 do |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
108 if expr "$1" : 'http[s]\?://.*' &> /dev/null |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
109 then |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
110 IS_URL="true" |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
111 else |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
112 IS__URL="false" |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
113 fi |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
114 |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
115 if [[ ${IS_URL} == "true" ]] |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
116 then |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
117 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
|
118 then |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
119 curl --location "${patch}" 2> /dev/null | command patch -p1 |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
120 continue |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
121 else |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
122 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
|
123 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
|
124 return $? |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
125 fi |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
126 else |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
127 if patch -p1 --dry-run < ${patch} |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
128 then |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
129 patch -p1 < ${patch} |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
130 continue |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
131 else |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
132 echo "patch -p1 --dry-run < ${patch}" |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
133 patch -p1 --dry-run < ${patch} |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
134 return $? |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
135 fi |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
136 fi |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
137 done |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
138 } |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
139 |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
140 cdwin() { |
305
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
141 # 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
|
142 # as that is set to the cwd by PS1 [?] |
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
143 # TODO: ssh windows |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
144 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
|
145 DIR=${DIR/\~/$HOME} |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
146 cd $DIR |
532 | 147 activate-nearest |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
148 } |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
149 |
66 | 150 function colors() { |
151 | |
152 CLR_WHITE="\033[0;37m" | |
153 CLR_WHITEBOLD="\033[1;37m" | |
154 CLR_BLACK="\033[0;30m" | |
155 CLR_GRAY="\033[1;30m" | |
156 CLR_BLUE="\033[1;34m" | |
157 CLR_BLUEBOLD="\033[0;34m" | |
158 CLR_GREEN="\033[0;32m" | |
159 CLR_GREENBOLD="\033[1;32m" | |
160 CLR_CYAN="\033[0;36m" | |
161 CLR_CYANBOLD="\033[1;36m" | |
162 CLR_RED="\033[0;31m" | |
163 CLR_REDBOLD="\033[1;31m" | |
164 CLR_PURPLE="\033[0;35m" | |
165 CLR_PURPLEBOLD="\033[1;35m" | |
166 CLR_YELLOW="\033[0;33m" | |
167 CLR_YELLOWBOLD="\033[1;33m" | |
168 CLR_NOTHING="\033[0m" | |
169 } | |
170 colors | |
171 | |
816 | 172 hh() { |
173 history | awk '{$1="";print substr($0,2)}' | |
174 } | |
418 | 175 |
534 | 176 ### find functionality |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
177 |
303
266d6b337373
still doesnt work but what the fuck
Jeff Hammel <jhammel@mozilla.com>
parents:
296
diff
changeset
|
178 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
|
179 ff() { |
304
7ed290454f50
random cleanup but not much
Jeff Hammel <jhammel@mozilla.com>
parents:
303
diff
changeset
|
180 # nice fast find function |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
181 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
182 if (( $# < 2 )) |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
183 then |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
184 FILENAME='*' # default -- look in all files |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
185 else |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
186 FILENAME=$2 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
187 fi |
76 | 188 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
|
189 # echo $CMD |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
190 eval $CMD |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
191 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
192 } |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
193 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
194 chainff() { |
304
7ed290454f50
random cleanup but not much
Jeff Hammel <jhammel@mozilla.com>
parents:
303
diff
changeset
|
195 # chained fast find |
7ed290454f50
random cleanup but not much
Jeff Hammel <jhammel@mozilla.com>
parents:
303
diff
changeset
|
196 |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
197 if (( $# < 2 )) |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
198 then |
304
7ed290454f50
random cleanup but not much
Jeff Hammel <jhammel@mozilla.com>
parents:
303
diff
changeset
|
199 return 1 # bad invocation |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
200 fi |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
201 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
202 RESULTS=`ff "$2" "$1"` |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
203 shift 2 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
204 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
205 for i in $RESULTS |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
206 do |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
207 for arg in $@ |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
208 do |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
209 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
|
210 then |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
211 touch /dev/null |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
212 else |
260
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
213 i="" |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
214 break |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
215 fi |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
216 done |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
217 if [ -n "$i" ] |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
218 then |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
219 echo $i |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
220 fi |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
221 done |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
222 } |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
223 |
304
7ed290454f50
random cleanup but not much
Jeff Hammel <jhammel@mozilla.com>
parents:
303
diff
changeset
|
224 |
66 | 225 cff () { |
304
7ed290454f50
random cleanup but not much
Jeff Hammel <jhammel@mozilla.com>
parents:
303
diff
changeset
|
226 # contextual fastfind |
66 | 227 if (( $# < 2 )); then |
228 local FILENAME='*' # default -- look in all files | |
229 else | |
230 local FILENAME=$2 | |
231 fi | |
232 | |
233 for i in `ff "$1" "$FILENAME"`; do | |
234 echo -e "$CLR_GREEN--->>> ""$CLR_YELLOWBOLD""$i""$CLR_NOTHING" : | |
235 grep --color=auto -i -n -C 3 "$1" $i | |
236 done | |
237 | |
260
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
238 } |
66 | 239 |
539 | 240 ### functions for files |
241 | |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
242 tmpfile() { |
305
fac01a1bcedf
add an apply-patch function
Jeff Hammel <jhammel@mozilla.com>
parents:
304
diff
changeset
|
243 # 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
|
244 |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
245 if [ "$#" == "0" ] |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
246 then |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
247 args="tmp" |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
248 else |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
249 args=$@ |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
250 fi |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
251 |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
252 for i in $args |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
253 do |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
254 NEWNAME=${i}.$RANDOM |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
255 |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
256 while [ -e $NEWNAME ] |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
257 do |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
258 NEWNAME=${NEWNAME}.tmp |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
259 done |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
260 echo "$NEWNAME" |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
261 done |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
262 } |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
263 |
565 | 264 abspath() { |
642 | 265 # print absolute path |
565 | 266 python -c "import os; print (os.path.realpath('$*'))" |
267 } | |
268 | |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
269 fn() { |
565 | 270 # put full name on clipboard and echo it |
759
f632a9850bb8
lookie, i can has x platform
Jeff Hammel <k0scist@gmail.com>
parents:
755
diff
changeset
|
271 python -c "import os; print (os.path.realpath('$*'))" | ${CLIP_COPY} |
f632a9850bb8
lookie, i can has x platform
Jeff Hammel <k0scist@gmail.com>
parents:
755
diff
changeset
|
272 ${CLIP_PASTE} |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
273 } |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
274 |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
275 swap() { |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
276 # swap two files |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
277 if [ "$#" != "2" ] |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
278 then |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
279 echo "Usage: $FUNCNAME <file1> <file2>" |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
280 return |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
281 fi |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
282 for i in "$1" "$2" |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
283 do |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
284 if [ ! -w "$i" ] |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
285 then |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
286 echo "$FUNCNAME: Can't move $i" |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
287 return 1 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
288 fi |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
289 done |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
290 |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
291 NEWNAME=`basename $1`.$RANDOM |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
292 while [ -e $NEWNAME ] |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
293 do |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
294 NEWNAME=${NEWNAME}.tmp |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
295 echo "$NEWNAME" |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
296 done |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
297 |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
298 mv "$1" "$NEWNAME" |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
299 mv "$2" "$1" |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
300 mv "$NEWNAME" "$2" |
0
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
301 } |
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
302 |
560 | 303 verifyfiles() { |
304 # verify each line is an existing file | |
305 while read line | |
306 do | |
307 test -e "${line}" | |
308 echo $? $line | |
309 done | |
310 } | |
539 | 311 |
312 ### functions for editing | |
313 | |
314 edpe() { | |
315 # edit and pipe the buffer to stdout | |
316 FILE=`tmpfile` | |
317 $EDITOR $FILE | |
318 cat $FILE | |
319 rm $FILE | |
320 } | |
321 | |
322 eend() { | |
323 # edit the end of a file with emacs | |
324 FILE=$1 | |
325 shift | |
326 emacs +`wc -l "$FILE"` $@ | |
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() { |
780
c1ab43edf296
https://docs.python.org/3.1/distutils/uploading.html#pypi-package-display
Jeff Hammel <k0scist@gmail.com>
parents:
773
diff
changeset
|
386 # upload to pypi |
561 | 387 python setup.py egg_info -RDb "" sdist register upload develop |
388 } | |
389 | |
781 | 390 render_long_description() { |
780
c1ab43edf296
https://docs.python.org/3.1/distutils/uploading.html#pypi-package-display
Jeff Hammel <k0scist@gmail.com>
parents:
773
diff
changeset
|
391 # check the long_description from the command line: |
c1ab43edf296
https://docs.python.org/3.1/distutils/uploading.html#pypi-package-display
Jeff Hammel <k0scist@gmail.com>
parents:
773
diff
changeset
|
392 # https://docs.python.org/3.1/distutils/uploading.html#pypi-package-display |
c1ab43edf296
https://docs.python.org/3.1/distutils/uploading.html#pypi-package-display
Jeff Hammel <k0scist@gmail.com>
parents:
773
diff
changeset
|
393 python setup.py --long-description | rst2html.py > output.html |
c1ab43edf296
https://docs.python.org/3.1/distutils/uploading.html#pypi-package-display
Jeff Hammel <k0scist@gmail.com>
parents:
773
diff
changeset
|
394 } |
c1ab43edf296
https://docs.python.org/3.1/distutils/uploading.html#pypi-package-display
Jeff Hammel <k0scist@gmail.com>
parents:
773
diff
changeset
|
395 |
531 | 396 nearest-venv() { |
642 | 397 # find the nearest venv |
531 | 398 if [[ "$#" == "0" ]] |
399 then | |
400 directory=$PWD | |
401 else | |
402 directory=$1 | |
403 fi | |
564 | 404 directory=$(python -c "import os; print (os.path.abspath('${directory}'))") |
531 | 405 |
406 while [[ "${directory}" != "/" ]] | |
407 do | |
408 activate="${directory}/bin/activate" | |
409 if [ -e "${activate}" ] | |
410 then | |
411 echo ${directory} | |
412 return 0 | |
413 fi | |
414 | |
415 directory=$(dirname ${directory}) | |
416 | |
417 done | |
418 return 1 | |
419 } | |
420 | |
421 activate-nearest() { | |
642 | 422 # activate the nearest virtualenv |
531 | 423 nearest=$(nearest-venv) |
424 activate=${nearest}/bin/activate | |
425 if [ -e "${activate}" ] | |
426 then | |
427 . ${activate} | |
428 fi | |
429 } | |
430 | |
296 | 431 recreate-venv() { |
432 # recreate a virtualenv | |
433 VIRTUALENV="virtualenv.py" | |
334
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
434 if ! which ${VIRTUALENV} |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
435 then |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
436 return 1 |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
437 fi |
651 | 438 VENV_PATH=$(which ${VIRTUALENV}) |
439 echo VENV_PATH=${VENV_PATH} | |
334
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 # update virtualenv if possible |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
442 DIRNAME=$(dirname ${VENV_PATH}) |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
443 if [ -d "${DIRNAME}/.git" ] |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
444 then |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
445 cd "${DIRNAME}" |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
446 git pull |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
447 cd -- |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
448 fi |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
449 |
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
450 # for each virtualenv given... |
296 | 451 for i in $@ |
452 do | |
651 | 453 OLD_PWD=${PWD} |
454 echo "${i} : OLDPWD=${OLD_PWD}" | |
334
5b67dd5ce0ba
update virtualenv before upgrading
Jeff Hammel <jhammel@mozilla.com>
parents:
332
diff
changeset
|
455 # ...recreate it... |
296 | 456 ${VIRTUALENV} --clear "${i}" |
457 | |
458 SRCDIR="${i}"/src | |
459 if [ -d "${SRCDIR}" ] | |
460 then | |
461 . "${i}/bin/activate" | |
462 cd "${SRCDIR}" | |
463 for j in * | |
464 do | |
465 if [ -e "${j}"/setup.py ] | |
466 then | |
467 cd "${j}" | |
468 python setup.py develop | |
469 cd .. | |
470 fi | |
471 done | |
472 fi | |
651 | 473 echo "cd OLD_PWD=${OLD_PWD}" |
474 cd ${OLD_PWD} | |
296 | 475 done |
476 } | |
477 | |
260
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
478 ### 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
|
479 |
71
3d111401010f
add a function to view the files in a diff
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
480 difffiles() { |
534 | 481 # which files are diffed; could use `lsdiff` |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
482 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
|
483 } |
3d111401010f
add a function to view the files in a diff
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
484 |
534 | 485 git-diff-master() { |
486 # differences of a git repository with master | |
487 git diff $(git merge-base HEAD master) | |
488 } | |
489 | |
490 git-diff-total() { | |
491 # diff of both added + modified files | |
492 combinediff <(git diff) <(git diff --cached) | |
493 } | |
494 | |
260
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
495 hg-update-all() { |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
496 # update all hg repositories in the current directory |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
497 for i in *; |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
498 do |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
499 if [ -e $i/.hg ] |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
500 then |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
501 cd $i |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
502 hg pull |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
503 hg update |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
504 cd - |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
505 fi |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
506 done |
84 | 507 } |
508 | |
110
bf567a0e8fef
add a hg-qcommit that does the right thing
Jeff Hammel <jhammel@mozilla.com>
parents:
103
diff
changeset
|
509 hg-qcommit() { |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
510 message=$1 |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
511 hg qrefresh |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
512 if [ -z "${message}" ] |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
513 then |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
514 hg qcommit |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
515 else |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
516 hg qcommit -m "${message}" |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
517 fi |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
518 hgroot=$(hg root) |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
519 patches=${hgroot}/.hg/patches/ |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
520 if [ -e ${patches}.hg ] |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
521 then |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
522 cd ${patches} |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
523 hg push |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
524 fi |
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
525 cd - |
110
bf567a0e8fef
add a hg-qcommit that does the right thing
Jeff Hammel <jhammel@mozilla.com>
parents:
103
diff
changeset
|
526 } |
bf567a0e8fef
add a hg-qcommit that does the right thing
Jeff Hammel <jhammel@mozilla.com>
parents:
103
diff
changeset
|
527 |
89
dfda4f7d4db4
add a command to generate those hgrc files i always need
Jeff Hammel <jhammel@mozilla.com>
parents:
88
diff
changeset
|
528 |
260
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
529 ### functions for web content |
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
530 |
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
531 blog-file() { |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
532 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
|
533 } |
eacc4c5ed628
add an alias for mozbuild bugs and cleanup a bit
Jeff Hammel <jhammel@mozilla.com>
parents:
250
diff
changeset
|
534 |
330 | 535 ### |
536 | |
648 | 537 apt-upgrade() { |
538 sudo apt-get -y update | |
539 sudo apt-get -y upgrade | |
540 } | |
541 | |
101 | 542 flatten() { |
543 directory=$PWD | |
544 if [ "$#" == "1" ] | |
545 then | |
546 directory=$1 | |
547 fi | |
548 cd $directory | |
549 unset find # don't use the alias | |
102 | 550 find . -name '*' -type f | sed 's/.\///' | while read line |
101 | 551 do |
552 filename=$(echo $line | sed 's/\//-/g') | |
553 mv "${line}" "${filename}" | |
554 done | |
555 for i in * | |
556 do | |
557 if [ -d $i ] | |
558 then | |
559 rm -rf "${i}" | |
560 fi | |
561 done | |
562 } | |
563 | |
103
e841c419199e
add process command to get filehandles
Jeff Hammel <jhammel@mozilla.com>
parents:
102
diff
changeset
|
564 filehandles() { |
e841c419199e
add process command to get filehandles
Jeff Hammel <jhammel@mozilla.com>
parents:
102
diff
changeset
|
565 TMPFILE=$(tmpfile) |
e841c419199e
add process command to get filehandles
Jeff Hammel <jhammel@mozilla.com>
parents:
102
diff
changeset
|
566 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
|
567 . ${TMPFILE} | sort |
e841c419199e
add process command to get filehandles
Jeff Hammel <jhammel@mozilla.com>
parents:
102
diff
changeset
|
568 rm ${TMPFILE} |
e841c419199e
add process command to get filehandles
Jeff Hammel <jhammel@mozilla.com>
parents:
102
diff
changeset
|
569 } |
e841c419199e
add process command to get filehandles
Jeff Hammel <jhammel@mozilla.com>
parents:
102
diff
changeset
|
570 |
167
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
571 quotemail() { |
642 | 572 # TODO: -> textshaper |
167
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
573 command='s/^/> /' |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
574 inplace="" |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
575 if [ "$#" == "2" ] |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
576 then |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
577 inplace="-i" |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
578 fi |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
579 |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
580 sed ${inplace} "${command}" "$1" |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
581 |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
582 } |
842e1fca024a
add a quotemail function for quoting mail
Jeff Hammel <jhammel@mozilla.com>
parents:
147
diff
changeset
|
583 |
317 | 584 rmktmp() { |
585 | |
586 TMPDIR=~/tmp | |
587 if [ -e ${TMPDIR} ] | |
588 then | |
589 rm -rf ${TMPDIR} | |
590 fi | |
591 mkdir ${TMPDIR} | |
592 cd ${TMPDIR} | |
593 pwd | |
594 | |
595 } | |
596 | |
546 | 597 exists() { |
598 while read line; do echo ${line} : $(($(test "-e ${line}"\") )); done | |
599 } | |
600 | |
767
35f8751c0930
it is very annoying to have ones overrides overridden; see also http://stackoverflow.com/questions/25381304/why-type-cd-on-mac-os-states-that-cd-is-a-function
Jeff Hammel <k0scist@gmail.com>
parents:
765
diff
changeset
|
601 ### ruby version manager |
35f8751c0930
it is very annoying to have ones overrides overridden; see also http://stackoverflow.com/questions/25381304/why-type-cd-on-mac-os-states-that-cd-is-a-function
Jeff Hammel <k0scist@gmail.com>
parents:
765
diff
changeset
|
602 [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* |
35f8751c0930
it is very annoying to have ones overrides overridden; see also http://stackoverflow.com/questions/25381304/why-type-cd-on-mac-os-states-that-cd-is-a-function
Jeff Hammel <k0scist@gmail.com>
parents:
765
diff
changeset
|
603 export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting |
35f8751c0930
it is very annoying to have ones overrides overridden; see also http://stackoverflow.com/questions/25381304/why-type-cd-on-mac-os-states-that-cd-is-a-function
Jeff Hammel <k0scist@gmail.com>
parents:
765
diff
changeset
|
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 |
742 | 608 ### deactivate any virtualenvs |
531 | 609 if type deactivate &> /dev/null |
610 then | |
611 deactivate | |
612 fi | |
649
fbfc02ea7d8e
make our menu generator slightly less vulgar
Jeff Hammel <k0scist@gmail.com>
parents:
648
diff
changeset
|
613 |
765 | 614 |
767
35f8751c0930
it is very annoying to have ones overrides overridden; see also http://stackoverflow.com/questions/25381304/why-type-cd-on-mac-os-states-that-cd-is-a-function
Jeff Hammel <k0scist@gmail.com>
parents:
765
diff
changeset
|
615 ### source site-specific BASHRC extensions |
840 | 616 export LOCAL_BASHRC="${HOME}/.bashrc_local" |
617 if [ -e "${LOCAL_BASHRC}" ] | |
755 | 618 then |
840 | 619 . "${LOCAL_BASHRC}" |
755 | 620 fi |
621 | |
649
fbfc02ea7d8e
make our menu generator slightly less vulgar
Jeff Hammel <k0scist@gmail.com>
parents:
648
diff
changeset
|
622 ### regenerate fluxbox menus here for convenience |
47
a0636527f809
regenerate fluxbox menus on shell
Jeff Hammel <k0scist@gmail.com>
parents:
19
diff
changeset
|
623 MENU=~/web/site/programs.html |
237
b33d0c78132c
move menu regeneration to its own function
Jeff Hammel <jhammel@mozilla.com>
parents:
224
diff
changeset
|
624 regeneratefluxmenu() { |
649
fbfc02ea7d8e
make our menu generator slightly less vulgar
Jeff Hammel <k0scist@gmail.com>
parents:
648
diff
changeset
|
625 if [ -e "${MENU}" ] |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
626 then |
649
fbfc02ea7d8e
make our menu generator slightly less vulgar
Jeff Hammel <k0scist@gmail.com>
parents:
648
diff
changeset
|
627 html2flux.py "${MENU}" -o ~/.fluxbox/applications |
295
e2564dd51334
slowly slowly, step by step...
Jeff Hammel <jhammel@mozilla.com>
parents:
279
diff
changeset
|
628 fi |
237
b33d0c78132c
move menu regeneration to its own function
Jeff Hammel <jhammel@mozilla.com>
parents:
224
diff
changeset
|
629 } |
b33d0c78132c
move menu regeneration to its own function
Jeff Hammel <jhammel@mozilla.com>
parents:
224
diff
changeset
|
630 regeneratefluxmenu |