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