-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bashrc.funcs
490 lines (422 loc) · 9.44 KB
/
.bashrc.funcs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
# ap - append `dir` to the var if it's not already there and it exists.
# `var` defaults to PATH if not given.
# `-n` requires `dir` to be nonempty
# `-v` be verbose about what happens
# If `after` is given, the dir is inserted after `after` in the `var`
# instead of at the end of var.
function ap() {
local OPTARG
local OPTIND
local append
local after
local dir
local nonempty=0
local var=PATH
local verbose=0
function usage() {
echo "usage: ap [-nv] [-a after] [-p var] dir..."
echo ""
echo " -a add the path after the \`before\` directory in the var"
echo " instead of at the beginning of the var"
echo " -n only add if the directory is not empty"
echo " -p add paths to \`var\` instead of PATH"
echo " -v be verbose about what we do"
}
function vecho() {
if [[ $verbose -eq 1 ]]; then
echo "$@"
fi
}
function append() {
local dir="$1"
local dotglob=0
if [[ ("${!var}" =~ ":${dir}:") || ("${!var}" =~ ^"${dir}:") || \
("${!var}" =~ ":${dir}"$) ]]; then
vecho "${dir} is already in the ${var}"
return
fi
if [[ ! -d "${dir}" ]]; then
vecho "${dir} doesn't exist"
return
fi
if [[ ${nonempty} -eq 1 ]]; then
if [[ "$(shopt dotglob)" =~ on ]]; then
dotglob=1
fi
shopt -s dotglob
if [[ $(echo -n "$dir/*") = "$dir/*" ]]; then
vecho "${dir} is empty, not adding to ${var}"
if [[ $dotglob = 0 ]]; then
shopt -u dotglob
fi
return
else
if [[ $dotglob = 0 ]]; then
shopt -u dotglob
fi
fi
fi
if [[ "${after}" == "" ]]; then
export ${var}="${!var}:${dir}"
vecho "${dir} appended to ${var}"
return
fi
if [[ ( "${!var}" = "${after}" ) || ( "${!var}" =~ ^"${after}:" ) ]] ; then
export ${var}=${!var/${after}/"${after}:${dir}"}
vecho "${dir} added to ${var} after ${after}"
elif [[ "${!var}" =~ ":${after}:" ]] ; then
export ${var}=${!var/:${after}:/:"${after}:${dir}":}
vecho "${dir} added to ${var} after ${after}"
elif [[ "${!var}" =~ ":${after}"$ ]] ; then
export ${var}=${!var/:${after}/:"${after}:${dir}"}
vecho "${dir} added to ${var} after ${after}"
else
vecho "${after} isn't in the ${var}"
fi
}
while getopts "a:hnp:v" opt; do
case ${opt} in
a) after=${OPTARG} ;;
n) nonempty=1 ;;
p) var=${OPTARG} ;;
v) verbose=1 ;;
h | ?)
usage
return
;;
esac
done
shift $(( $OPTIND - 1))
if [[ $# -eq 0 ]]; then
usage
return
fi
if [[ ("${!var}" == "") && ("${after}" == "") ]]; then
export ${var}="$1"
shift
fi
while [[ $# -gt 0 ]]; do
if [[ -d "$1" ]]; then
append "$1"
after="$1"
fi
shift
done
}
function df() {
command df -h "$@"
}
function dt() {
cd $dt/"$@"
}
function du() {
command du -h "$@"
}
function dve() {
# deactivate current python venv; see also ve().
deactivate
}
# csrc - cd to $csrc/$*
function csrc() {
if [ ! -z "$csrc" ]
then
cd ${csrc}/"$@"
else
echo "not in a view"
fi
}
function gb() {
git map-branches "$@"
}
function gdu() {
git diff @{u} "$@"
}
function gdun() {
git diff @{u} --name-only "$@"
}
function geu() {
ge $(git diff --name-only @{u} "$@")
}
function gng() {
git grep "$@" -- \*.gn \*.gni
}
function h() {
history "$@"
}
function home() {
cd "$HOME/$@"
}
# insert path into var
function ip() {
local OPTARG
local OPTIND
local before
local dir
local nonempty=0
local opt_nonempty
local opt_v
local prepend
local var=PATH
local verbose=0
function usage() {
echo "usage: ip [-nv] [-b before] [-p var] dir..."
echo ""
echo " -b add the directories before the \`before\` dir in the var"
echo " instead of at the beginning of the var"
echo " -n only add if the directory is not empty"
echo " -p add paths to \`var\` instead of PATH"
echo " -v be verbose about what we do"
}
function vecho() {
if [[ $verbose -eq 1 ]] ; then
echo "$@"
fi
}
function prepend() {
local dir="$1"
if [[ ("${!var}" =~ ":${dir}:") || ("${!var}" =~ ^"${dir}:") || \
("${!var}" =~ ":${dir}"$) ]]
then
vecho "${dir} is already in the ${var}"
return
fi
if [[ ! -d "${dir}" ]]; then
vecho "${dir} doesn't exist"
return
fi
if [[ ${nonempty} -eq 1 ]]; then
local dotglob=0
if [[ "$(shopt dotglob)" =~ on ]]; then
dotglob=1
fi
shopt -s dotglob
if [[ $(echo -n "$dir/*") = "$dir/*" ]]; then
vecho "${dir} is empty, not adding to ${var}"
if [[ $dotglob = 0 ]]; then
shopt -u dotglob
fi
return
else
if [[ $dotglob = 0 ]]; then
shopt -u dotglob
fi
fi
fi
if [[ "${before}" == "" ]]; then
export ${var}="${dir}:${!var}"
vecho "${dir} prepended to ${var}"
return
fi
if [[ "${!var}" =~ "${before}" ]]; then
export ${var}="${!var/${before}/"${dir}:${before}"}"
vecho "${dir} added to ${var} before ${before}"
else
vecho "${before} isn't in the ${var}"
fi
return
}
while getopts "b:hnp:v" opt
do
case ${opt} in
b) before=${OPTARG} ;;
n) nonempty=1 ; opt_nonempty="-n";;
p) var=${OPTARG} ;;
v) verbose=1 ; opt_v="-v" ;;
h | ?)
usage
return
;;
esac
done
shift $(( $OPTIND - 1))
if [[ $# -eq 0 ]]; then
usage
return
fi
first="$1"
if [[ ("${!var}" == "") && ("${after}" == "") ]]; then
export ${var}="${first}"
shift
else
prepend "${first}"
shift
fi
if [[ $# -gt 0 ]]; then
ap -a "${first}" -p "${var}" $opt_nonempty $opt_v "$@"
fi
}
alias ls='ls -F'
function pset() {
set | pset_aux "$@"
}
# redot - re-read dot files
function redot() {
local old_view
old_view=$view
. ~/.bashrc
if [ -n "$old_view" ]
then
sv $old_view
cd -
fi
}
function repeat() {
count=$1
shift
while [ $count -ne 0 ]
do
"$@"
if [ $? -gt 128 ]
then
return
fi
count=$((count - 1))
done
}
# rp - remove directories from path-like env var
# usage: rp [-p var] dir...
function rp() {
local comp
local var
function usage() {
echo "usage: rp [-v] [-p var] dir..."
echo ""
echo " -p remove paths from \`var\` instead of PATH"
echo " -v be verbose about what we do"
}
function vecho() {
if [[ $verbose -eq 1 ]] ; then
echo "$@"
fi
}
while getopts "hp:v" opt ; do
case ${opt} in
p) var="${OPTARG}" ;;
v) verbose=1 ;;
h | ?)
usage
return
;;
esac
done
shift $(( $OPTIND - 1))
if [[ $# -eq 0 ]]; then
usage
return
fi
while [[ $# -gt 0 ]]; do
comp="$1"
if [[ "${!var}" = "${comp}" ]] ; then
export ${!var}=
vecho "removed ${comp} from ${!var}"
elif [[ "${!var}" =~ ^"${comp}:" ]] ; then
# front
export ${var}="${!var/#${comp}:/}"
vecho "removed ${comp} from ${!var}"
elif [[ "${!var}" =~ ":${comp}:" ]] ; then
# middle
export ${var}="${PATH/:${comp}:/:}"
vecho "removed ${comp} from ${!var}"
elif [[ "${!var}" =~ ":${comp}"$ ]]
then
# end
export ${var}="${!var/%:$comp/}"
vecho "removed ${comp} from ${!var}"
else
vecho "did not find ${comp} in ${!var}"
fi
shift
done
}
function setprompt() {
if [ "$TERM" = "xterm" -o "$TERM" = "xterm-color" -o \
"$TERM" = "xterm-256color" -o "$TERM" = "msys" -o "$TERM" = "cygwin" ]
then
if [ ! -z "$view" ]
then
if [ "$GIT_PRESENT" = "1" -a "$OSNAME" != "cygwin" ]
then
PS1='\[\e]0;\u@\h ($view|$(gitbranch)):\w\a\]\W $ '
else
PS1='\[\e]0;\u@\h ($view):\w\a\]\W $ '
fi
else
PS1='\[\e]0;\u@\h:\w\a\]\W $ '
fi
else
if [ ! -z "$view" ]
then
PS1="($view) \W $ "
else
PS1="\W $ "
fi
fi
}
# Turn on shell tracing if necessary, execute a command, then turn off tracing
# if we turned it on before. If tracing is already on, just execute the command.
function shdbg() {
local x=0
if [[ !("$-" =~ "x") ]]; then
x=1
set -x
fi
"$@"
if [[ $x = 1 ]]; then
set +x
fi
}
function src() {
cd "$src/$@"
}
function sv() {
if [ "$1" = "-d" ]
then
unset view csrc
setprompt
return
fi
local new_view=$1
if [ ! -d "$src/$new_view" ]
then
echo "no such view '$new_view' under $src"
return
fi
export view=$new_view
export csrc=$(gcsrc $src/$new_view)
setprompt
cd $csrc
}
function uhome() {
cd "$HOME/$@"
}
function ve() {
if [[ "${1}" == "" ]]; then
if [[ -e ./.venv/pyvenv.cfg ]]; then
source ".venv/bin/activate"
elif [[ -d "${csrc}/.venv/pyvenv.cfg" ]]; then
source "${csrc}/.venv/bin/activate"
else
echo "No venv found in current directory"
fi
elif [[ -e "${1}/pyvenv.cfg" ]]; then
source "${1}/bin/activate"
else
echo "No venv found in ${1}"
fi
}
# echo current window size
function ws() {
echo "${COLUMNS}x${LINES}"
}
# Bash completion for sv()
# return any directories matching $src/c\.*
function _sv_comp() {
local cur prev opts
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
opts=$(cd $src ; \ls -1 | grep '^c\.' | sed 's/c\.//g' | tr "\n" " ")
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
}
complete -F _sv_comp sv