mostly t11 fixes
[distro-setup] / brc
1 #!/bin/bash
2 # Copyright (C) 2019 Ian Kelling
3 # SPDX-License-Identifier: AGPL-3.0-or-later
4 # this gets sourced. shebang is just for file mode detection
5
6 # Use source ~/.bashrc instead of doing bash -l when running a script
7 # so this can set extdebug and avoid the bash debugger.
8 if [[ -s /a/bin/errhandle/err ]]; then
9 source /a/bin/errhandle/err
10 elif [[ -s $bashrc_dir/err ]]; then
11 # shellcheck source=/a/bin/errhandle/err
12 source $bashrc_dir/err
13 fi
14
15 # In t8, it runs clear_console for login shells by default. I don't want
16 # my console cleared. And linux ttys get cleared without this.
17 if shopt login_shell >/dev/null && [[ -e ~/.bash_logout ]]; then
18 rm ~/.bash_logout
19 fi
20
21 # if [[ -s /usr/share/bash-completion/completions/git ]]; then
22 # source /usr/share/bash-completion/completions/git
23 # fi
24 # if [[ -s /usr/share/bash-completion/completions/gitk ]]; then
25 # source /usr/share/bash-completion/completions/gitk
26 # fi
27
28 # for testing error catching:
29 # t2() {
30 # echo t2
31 # grep sdf sdfd
32 # echo wtf
33 # }
34 # t1() {
35 # echo t1
36 # t2 a b c
37 # }
38
39 # * settings
40
41 CDPATH=.
42
43
44 # remove all aliases. aliases provided by the system tend to get in the way,
45 # for example, error happens if I try to define a function the same name as an alias
46 unalias -a
47
48 # remove gnome keyring warning messages
49 # there is probably a more proper way, but I didnt find any easily on google
50 # now using xfce+xmonad instead of vanilla xmonad, so disabling this
51 #unset GNOME_KEYRING_CONTROL
52
53 # use extra globing features.
54 shopt -s extglob
55 # include .files when globbing, but ignore files name . and ..
56 # setting this also sets dotglob.
57 export GLOBIGNORE="*/.:*/.."
58
59 # Useful info. see man bash.
60 PS4='$LINENO+ '
61
62
63 # broken with bash_completion package. Saw a bug for this once. dont anymore.
64 # still broken in wheezy
65 # still buggered in latest stable from the web, version 2.1
66 # perhaps its fixed in newer git version, which fails to make for me
67 # this note is from 6-2014.
68 # still broken in flidas.
69 #shopt -s nullglob
70
71 # make tab on an empty line do nothing
72 shopt -s no_empty_cmd_completion
73
74 # fix spelling errors for cd, only in interactive shell
75 shopt -s cdspell
76 # append history instead of overwritting it
77 shopt -s histappend
78 # for compatibility, per gentoo/debian bashrc
79 shopt -s checkwinsize
80 # attempt to save multiline single commands as single history entries.
81 shopt -s cmdhist
82 # enable **
83 shopt -s globstar
84
85
86 # inside emacs fixes
87 if [[ $LC_INSIDE_EMACS ]]; then
88 # EMACS is used by bash on startup, but we dont need it anymore.
89 # plus I hit a bug in a makefile which inherited it
90 unset EMACS
91 export LC_INSIDE_EMACS
92 export PAGER=cat
93 export MANPAGER=cat
94 # scp completion does not work, but this doesnt fix it. todo, figure this out
95 #complete -r scp &> /dev/null
96 # todo, remote file completion fails, figure out how to turn it off
97 export NODE_DISABLE_COLORS=1
98 # This gets rid of ugly terminal escape chars in node repl
99 # sometime, Id like to have completion working in emacs shell for node
100 # the offending chars can be found in lib/readline.js,
101 # things that do like:
102 # stream.write('\x1b[' + (x + 1) + 'G');
103 # We can remove them and keep readline, for example by doing this
104 # to start a repl:
105 #!/usr/bin/env nodejs
106 # var readline = require('readline');
107 # readline.cursorTo = function(a,b,c) {};
108 # readline.clearScreenDown = function(a) {};
109 # const repl = require('repl');
110 # var replServer = repl.start('');
111 #
112 # no prompt, or else readline complete seems to be confused, based
113 # on our column being different? node probably needs to send
114 # different kind of escape sequence that is not ugly. Anyways,
115 # completion doesnt work yet even with the ugly prompt, so whatever
116 #
117 export NODE_NO_READLINE=1
118
119 fi
120
121 export SSH_CONFIG_FILE_OVERRIDE=/root/.ssh/confighome
122
123 # emacs has a different default search path than the info command. This
124 # adds the info defaults to emacs, but not the reverse, because I dun
125 # care much about the cli. The search path is only on the cli if you run
126 # "info xxx", or in emacs if you run '(info xxx)', so not that
127 # important, but might as well fix it.
128
129 # info info says this path is what was compiled, and its not documented
130 # anywhere. Through source grepping, i found it in filesys.h of the info
131 # source in trisquel flidas.
132 #
133 # Traling : means for emacs to add its own stuff on to the end.
134
135 export INFOPATH=$PATH:/usr/local/info:/usr/info:/usr/local/lib/info:/usr/lib/info:/usr/local/gnu/info:/usr/local/gnu/lib/info:/usr/gnu/info:/usr/gnu/lib/info:/opt/gnu/info:/usr/share/info:/usr/share/lib/info:/usr/local/share/info:/usr/local/share/lib/info:/usr/gnu/lib/emacs/info:/usr/local/gnu/lib/emacs/info:/usr/local/lib/emacs/info:/usr/local/emacs/info:.:
136
137 # for openwrt system that has no stty, this is easier than
138 # guarding every time i use it.
139 if ! type -p stty >/dev/null; then
140 stty() { :; }
141 fi
142
143
144 use_color=false
145 if [[ $- == *i* ]]; then
146 # for readline-complete.el
147 if [[ $LC_INSIDE_EMACS ]]; then
148 # all for readline-complete.el
149 stty echo
150 bind 'set horizontal-scroll-mode on'
151 bind 'set print-completions-horizontally on'
152 bind '"\C-i": self-insert'
153 else
154
155
156 if [[ $TERM != dumb ]] && test -t 1; then
157 use_color=true
158 fi
159
160 if [[ $KONSOLE_PROFILE_NAME ]]; then
161 TERM=xterm-256color
162 fi
163
164 if [[ $TERM == alacritty && ! -e /usr/share/terminfo/a/alacritty ]]; then
165 # todo: we should try installing the alacritty terminfo if it is not found
166 # https://github.com/alacritty/alacritty/issues/2838
167 TERM=xterm-256color
168 fi
169
170 # copying from the alacritty example above,
171 if [[ $TERM == xterm-kitty ]]; then
172 if [[ ! -e /usr/share/terminfo/x/xterm-kitty ]]; then
173 TERM=xterm-256color
174 else
175 if [[ -e /a/opt/kitty/shell-integration/bash/kitty.bash ]]; then
176 KITTY_SHELL_INTEGRATION=t
177 source /a/opt/kitty/shell-integration/bash/kitty.bash
178 fi
179 fi
180 fi
181
182 # todo: not sure this works in sakura
183 #stty werase undef
184 #bind "\C-w": kill-region
185 # sakura == xterm-256color
186 # konsole == xterm
187 if [[ $TERM != xterm-kitty && $TERM == xterm* ]]; then
188 # control + arrow keys. for other terminals, see http://unix.stackexchange.com/questions/10806/how-to-change-previous-next-word-shortcut-in-bash
189 bind '"\e[1;5C": shell-forward-word' 2>/dev/null
190 bind '"\e[1;5D": shell-backward-word' 2>/dev/null
191 else
192 # make ctrl-backspace work. for konsole, i fixed it through
193 # /home/iank/.local/share/konsole/default.keytab
194 stty werase ^h
195 bind '"\eOc": shell-forward-word'
196 bind '"\eOd": shell-backward-word'
197 fi
198 # i cant remember why i did this, probably to free up some keys to bind
199 # to other things in bash.
200 # other than C-c and C-z, the rest defined by stty -a are, at least in
201 # gnome-terminal, overridden by bash, or disabled by the system
202 stty lnext undef stop undef start undef
203 fi
204
205 fi
206
207 case $TERM in
208 # fixup broken backspace in chroots
209 xterm-kitty|alacritty)
210 chroot() {
211 TERM=xterm-256color command chroot "$@"
212 }
213 ;;
214 esac
215
216 export BC_LINE_LENGTH=0
217
218 # ansible option
219 export PROFILE_TASKS_TASK_OUTPUT_LIMIT=100
220
221 # note, if I use a machine I dont want files readable by all users, set
222 # umask 077 # If fewer than 4 digits are entered, leading zeros are assumed
223
224 # i for insensitive. the rest from
225 # X means dont remove the current screenworth of output upon exit
226 # R means to show colors n things
227 export LESS=RXij12
228 export SYSTEMD_LESS=$LESS
229
230 export NNN_COLORS=2136
231
232 export SL_FILES_DIR=/b/ds/sl/.iank
233 export SL_INFO_DIR=/p/sshinfo
234
235
236 # * include files
237
238 if [[ -s $bashrc_dir/path-add-function ]]; then
239 source $bashrc_dir/path-add-function
240 if [[ $SSH_CLIENT ]]; then
241 if grep -qF /home/iank/.iank/e/e /etc/exports &>/dev/null; then
242 export EMACSDIR=/home/iank/.iank/e/e
243 fi
244 path-add $bashrc_dir
245 fi
246 fi
247
248 # if someone exported $SOE (stop on error), catch errors.
249 #
250 # Note, on debian this results in the following warning when in ssh,
251 # hich I haven't figured out how to fix. It doesn't happen if we source
252 # after the shell has started
253 #
254 # bash: /usr/share/bashdb/bashdb-main.inc: No such file or directory
255 # bash: warning: cannot start debugger; debugging mode disabled
256 if [[ $SOE ]]; then
257 if [[ -e /a/bin/errhandle/err ]]; then
258 source /a/bin/errhandle/err
259 fi
260 fi
261
262
263 mysrc() {
264 local path dir file
265 path=$1
266 dir=${path%/*}
267 file=${path##*/}
268 if [[ -s $path ]]; then
269 source $path
270 elif [[ -s $bashrc_dir/$file ]]; then
271 source $bashrc_dir/$file
272 fi
273 }
274
275
276 mysrc /a/bin/small-misc-bash/ll-function
277 mysrc /a/bin/distro-functions/src/package-manager-abstractions
278
279
280 # * functions
281 ccomp() { # copy completion
282 local src=$1
283 local c
284 shift
285 if ! c=$(complete -p $src 2>/dev/null); then
286 _completion_loader $src &>/dev/null ||:
287 c=$(complete -p $src 2>/dev/null) || return 0
288 fi
289 # remove $src( .*|$)
290 c=${c% $src}
291 c=${c%% $src *}
292 eval $c $*
293 }
294
295
296 ..() { c ..; }
297 ...() { c ../..; }
298 ....() { c ../../..; }
299 .....() { c ../../../..; }
300 ......() { c ../../../../..; }
301
302 chere() {
303 local f path
304 for f; do
305 path=$(readlink -e "$f")
306 echo "cat >$path <<'EOF'"
307 cat "$f"
308 echo EOF
309 done
310 }
311
312
313 # file cut copy and paste, like the text buffers :)
314 # I havnt tested these.
315 _fbufferinit() { # internal use
316 ! [[ $my_f_tempdir ]] && my_f_tempdir=$(mktemp -d)
317 rm -rf "${my_f_tempdir:?}"/*
318 }
319 fcp() { # file cp
320 _fbufferinit
321 cp "$@" "$my_f_tempdir"/
322 }
323 fct() { # file cut
324 _fbufferinit
325 mv "$@" "$my_f_tempdir"/
326 }
327 fpst() { # file paste
328 [[ $2 ]] && { echo too many arguments; return 1; }
329 target=${1:-.}
330 cp "$my_f_tempdir"/* "$target"
331 }
332
333 _khfix_common() {
334 local host ip port file key
335 read -r host ip port < <(timeout -s 9 2 ssh -oBatchMode=yes -oControlMaster=no -oControlPath=/ -v $1 |& sed -rn "s/debug1: Connecting to ([^ ]+) \[([^\]*)] port ([0-9]+).*/\1 \2 \3/p" ||: )
336 file=$(readlink -f ~/.ssh/known_hosts)
337 if [[ ! $ip ]]; then
338 echo "khfix: ssh failed"
339 return 1
340 fi
341 if [[ $port != 22 ]]; then
342 ip_entry="[$ip]:$port"
343 host_entry="[$host]:$port"
344 else
345 ip_entry=$ip
346 host_entry=$host
347 fi
348 tmpfile=$(mktemp)
349 if [[ $host != $ip ]]; then
350 key=$(ssh-keygen -F "$host_entry" -f $file | sed -r 's/^.*([^ ]+ +[^ ]+) *$/\1/')
351 if [[ $key ]]; then
352 grep -Fv "$key" "$file" | sponge "$file"
353 fi
354 fi
355 key=$(ssh-keygen -F "$ip_entry" -f $file | sed -r 's/^.*([^ ]+ +[^ ]+) *$/\1/')
356 if [[ $key ]]; then
357 grep -Fv "$key" "$file" | sponge "$file"
358 fi
359 ll ~/.ssh/known_hosts
360 rootsshsync
361 }
362 khfix() { # known hosts fix
363 _khfix_common "$@" || return 1
364 ssh $1 :
365 }
366 khcopy() {
367 _khfix_common "$@"
368 ssh-copy-id $1
369 }
370
371 a() {
372 local x
373 x=$(readlink -nf "${1:-$PWD}")
374 # yes, its kinda dumb that xclip/xsel cant do this in one invocation
375 echo -n "$x" | xclip -selection clipboard
376 echo -n "$x" | xclip
377 }
378
379 # a1 = awk {print $1}
380 for field in {1..20}; do
381 eval a$field"() { awk '{print \$$field}'; }"
382 done
383 # h1 = head -n1
384 for num in {1..9}; do
385 eval h$num"() { head -n$num; }"
386 done
387
388
389 hexipv4() {
390 printf '%d.%d.%d.%d\n' $(echo $1 | sed 's/../0x& /g')
391 }
392
393 vp9() {
394 local f out outdir in
395 outdir=vp9
396 case $1 in
397 --out)
398 outdir=$2
399 shift 2
400 ;;
401 esac
402 m mkdir -p $outdir
403 for f; do
404 out=$PWD/$outdir/$f
405 in=$PWD/$f
406 m cd $(mktemp -d)
407 pwd
408 m ffmpeg -threads 0 -i $in -g 192 -vcodec libvpx-vp9 -vf scale=-1:720 -max_muxing_queue_size 9999 -b:v 750K -pass 1 -an -f null /dev/null
409 m ffmpeg -y -threads 0 -i $in -g 192 -vcodec libvpx-vp9 -vf scale=-1:720 -max_muxing_queue_size 9999 -b:v 750K -pass 2 -c:a libvorbis -qscale:a 5 $out
410 cd -
411 done
412 }
413
414 utcl() { # utc 24 hour time to local hour 24 hour time
415 echo "print( ($1 $(date +%z | sed -r 's/..$//;s/^(-?)0*/\1/')) % 24)"|python3
416 }
417
418 declare -a _iankdirf _iankdirb
419
420
421 # ## old wcd, to be deleted
422 # b() {
423 # # backwards
424 # c -
425 # }
426 # # shellcheck disable=SC2032
427 # f() {
428 # # cd forward
429 # c +
430 # }
431 # cl() {
432 # # choose recent directory. cl = cd list
433 # c =
434 # }
435 # # c. better cd
436 # if ! type -t c &>/dev/null; then
437 # if type -p wcd &>/dev/null; then
438 # if [[ $LC_INSIDE_EMACS ]]; then
439 # c() { wcd -c -z 50 -o "$@"; }
440 # else
441 # # lets see what the fancy terminal does from time to time
442 # c() { wcd -c -z 50 "$@"; }
443 # fi
444 # else
445 # c() { cd "$@"; }
446 # fi
447 # fi
448
449 # c. better cd.
450 # keep 2 stacks, forward and back. the top of the back is $PWD
451 # as long as the last directory change was due to c,b,or cl.
452 c() {
453 # normally, the top of dirb is our current dir. if it isn't,
454 # put it on there, except we don't want to do that when we
455 # just launched a shell
456 if [[ $OLDPWD ]]; then
457 if (( ${#_iankdirb[@]} == 0 )) || [[ ${_iankdirb[-1]} != "$PWD" ]]; then
458 _iankdirb+=("$PWD")
459 fi
460 fi
461 cd "$@"
462 if (( ${#_iankdirb[@]} == 0 )) || [[ ${_iankdirb[-1]} != "$PWD" ]]; then
463 _iankdirb+=("$PWD")
464 fi
465 echo "$PWD" >> ~/.iankdirs
466 }
467 ccomp cd c
468
469 b() {
470 local topb
471 if (( ${#_iankdirb[@]} == 0 )); then
472 echo "nothing left to go back to" >&2
473 return 0
474 fi
475 topb="${_iankdirb[-1]}"
476
477 if [[ $topb == "$PWD" ]] && (( ${#_iankdirb[@]} == 1 )); then
478 echo "already on last back entry" >&2
479 return 0
480 fi
481
482
483 if [[ $topb == "$PWD" ]]; then
484 # add to dirf if not already there
485 if (( ${#_iankdirf[@]} == 0 )) || [[ ${_iankdirf[-1]} != "$topb" ]]; then
486 _iankdirf+=("$topb")
487 fi
488 unset "_iankdirb[-1]"
489 cd "${_iankdirb[-1]}"
490 else
491 if (( ${#_iankdirf[@]} == 0 )) || [[ ${_iankdirf[-1]} != "$PWD" ]]; then
492 _iankdirf+=("$PWD")
493 fi
494 cd "$topb"
495 fi
496
497 # give us a peek at what is next in the list
498 # if (( ${#_iankdirb[@]} >= 2 )); then
499 # printf "%s\n" "${_iankdirb[-2]}"
500 # fi
501 }
502
503 f() {
504 local topf
505 if (( ${#_iankdirf[@]} == 0 )); then
506 echo "no forward dir left" >&2
507 return 0
508 fi
509 topf="${_iankdirf[-1]}"
510 unset "_iankdirf[-1]"
511 c "$topf"
512
513 # give us a peek at what is next in the list
514 # if (( ${#_iankdirf[@]} )); then
515 # printf "%s\n" "${_iankdirf[-1]}"
516 # fi
517 }
518
519 # a b c (d)
520 ## back
521 # a b (c)
522 # d
523 #back
524 #a (b)
525 #d c
526 #back
527 #(a)
528 #d c b
529 #forward
530 #a (b)
531 #d c
532 #
533 # a b c
534 ## back
535 # a b
536 # (c)
537 ## forward
538
539 cl() {
540 local i line input start tmpfile
541 local -A buttondirs alines
542 local -a buttons dirs lines
543 buttons=( {a..z} {2..9} )
544 if [[ ! -s ~/.iankdirs ]]; then
545 echo nothing in ~/.iankdirs
546 return 0
547 fi
548
549 i=0
550
551 # note, alternate approach like this, made the following read fail
552 # done < <(tac ~/.iankdirs | awk '!seen[$0]++')
553 # bash: read: read error: 0: Input/output error
554 # which went away by adding a sleep 1 after it.
555
556 mapfile -t lines <~/.iankdirs
557 start=$(( ${#lines[@]} - 1 ))
558
559 # we have ~33 buttons as of this writing, so lets
560 # prune down the history every once in a while.
561 if (( start > 500 )); then
562 tmpfile=$(mktemp)
563 tac ~/.iankdirs | awk '!seen[$0]++' | head -n 200 >$tmpfile
564 cat $tmpfile > ~/.iankdirs
565 fi
566
567 for (( j=$start; j >= 0; j-- )); do
568 line="${lines[$j]}"
569 if [[ ! $line || ${alines[$line]} || ! -d "$line" || $line == "$PWD" || line == "$HOME" ]]; then
570 continue
571 fi
572 alines[$line]=t
573 buttondirs[${buttons[i]}]="$line"
574 printf "%s %s\n" ${buttons[i]} "$line"
575 if (( i == ${#buttons[@]} - 1 )); then
576 break
577 fi
578 i=$(( i + 1 ))
579 done
580
581 if (( i == 0 )); then
582 echo "no dirs in ~/.iankdirs"
583 return 0
584 fi
585 read -r -N 1 input
586 if [[ $input != $'\n' ]]; then
587 c ${buttondirs[$input]}
588 fi
589 }
590 bl() {
591 local start i j max
592 max=10
593 start=$(( ${#_iankdirb[@]} - 1 ))
594
595 # cleanup possible repeating of pwd
596 if (( start >= 0 )) && [[ ${_iankdirb[$start]} == "$PWD" ]]; then
597 start=$(( start - 1 ))
598 fi
599 j=1
600 if (( start >= 0 )); then
601 for (( i=$start; i >= 0 ; i-- )); do
602 printf "%s %s\n" $j ${_iankdirb[i]}
603 j=$(( j + 1 ))
604 if (( j >= max )); then
605 break
606 fi
607 done
608 fi
609
610 max=10
611
612 start=$(( ${#_iankdirf[@]} - 1 ))
613
614 # cleanup possible repeating of pwd
615 if (( start >= 0 )) && [[ ${_iankdirf[$start]} == "$PWD" ]]; then
616 start=$(( start - 1 ))
617 fi
618 if (( start < 0 )); then
619 return 0
620 fi
621 echo --
622 j=1
623 for (( i=$start; i >= 0 ; i-- )); do
624 printf "%s %s\n" $j ${_iankdirf[i]}
625 j=$(( j + 1 ))
626 if (( j >= max )); then
627 break
628 fi
629 done
630 }
631
632
633
634 c4() { c /var/log/exim4; }
635
636 caa() { git commit --amend --no-edit -a; }
637
638 cf() {
639 for f; do
640 hr
641 echo "$f"
642 hr
643 cat "$f"
644 done
645 }
646 caf() {
647 # shellcheck disable=SC2033
648 find -L "$@" -type f -not \( -name .svn -prune -o -name .git -prune \
649 -o -name .hg -prune -o -name .editor-backups -prune \
650 -o -name .undo-tree-history -prune \) \
651 -exec bash -c '. ~/.bashrc; hr; echo "$1"; hr; cat "$1"' _ {} \; 2>/dev/null
652
653 }
654 ccomp cat cf caf
655
656 calc() { echo "scale=3; $*" | bc -l; }
657 # no having to type quotes, but also no command history:
658 clc() {
659 local x
660 read -r x
661 echo "scale=3; $x" | bc -l
662 }
663
664 cam() {
665 git commit -am "$*"
666 }
667
668 ccat () { # config cat. see a config without extra lines.
669 sed -r '/^[[:space:]]*([;#]|--|\/\/|$)/d' "$@"
670 }
671 ccomp grep ccat
672
673 chrbind() {
674 local d
675 # dev/pts needed for pacman signature check
676 for d in dev proc sys dev/pts; do
677 [[ -d $d ]]
678 if ! mountpoint $d &>/dev/null; then
679 m s mount -o bind /$d $d
680 fi
681 done
682 }
683 chumount() {
684 local d
685 # dev/pts needed for pacman signature check
686 for d in dev/pts dev proc sys; do
687 [[ -d $d ]]
688 if mountpoint $d &>/dev/null; then
689 m s umount $d
690 fi
691 done
692 }
693
694
695 _cdiff-prep() {
696 # join options which are continued to multiples lines onto one line
697 local first=true
698 while IFS= read -r line; do
699 # remove leading spaces/tabs. assumes extglob
700 if [[ $line == "[ ]*" ]]; then
701 line="${line##+( )}"
702 fi
703 if $first; then
704 pastline="$line"
705 first=false
706 elif [[ $line == *=* ]]; then
707 echo "$pastline" >> "$2"
708 pastline="$line"
709 else
710 pastline="$pastline $line"
711 fi
712 done < <(grep -vE '^([ \t]*#|^[ \t]*$)' "$1")
713 echo "$pastline" >> "$2"
714 }
715
716 cdiff() {
717 # diff config files,
718 # setup for format of postfix, eg:
719 # option = stuff[,]
720 # [more stuff]
721 local pastline unified f1 f2
722 unified="$(mktemp)"
723 f1="$(mktemp)"
724 f2="$(mktemp)"
725 _cdiff-prep "$1" "$f1"
726 _cdiff-prep "$2" "$f2"
727 cat "$f1" "$f2" | grep -Po '^[^=]+=' | sort | uniq > "$unified"
728 while IFS= read -r line; do
729 # the default bright red / blue doesnt work in emacs shell
730 dwdiff -cblue,red -A best -d " ," <(grep "^$line" "$f1" || echo ) <(grep "^$line" "$f2" || echo ) | colordiff
731 done < "$unified"
732 }
733
734
735 cat-new-files() {
736 local start=$SECONDS
737 local dir="$1"
738 # shellcheck disable=SC2030
739 inotifywait -m "$dir" -e create -e moved_to | \
740 while read -r filedir _ file; do
741 cat "$filedir$file"
742 hr
743 calc $((SECONDS - start)) / 60
744 sleep 5
745 done
746
747 }
748
749 # shellcheck disable=SC2032
750 chown() {
751 # makes it so chown -R symlink affects the symlink and its target.
752 if [[ $1 == -R ]]; then
753 shift
754 command chown -h "$@"
755 command chown -R "$@"
756 else
757 command chown "$@"
758 fi
759 }
760
761 cim() {
762 git commit -m "$*"
763 }
764
765
766 d() { builtin bg "$@"; }
767 ccomp bg d
768
769 dc() {
770 diff --strip-trailing-cr -w "$@" # diff content
771 }
772 ccomp diff dc
773
774 despace() {
775 local x y
776 for x in "$@"; do
777 y="${x// /_}"
778 safe_rename "$x" "$y"
779 done
780 }
781
782 # get ipv4 ip from HOST. or if it is already a number, return that
783 hostip() {
784 local host="$1"
785 case $host in
786 [0-9:])
787 echo "$host"
788 ;;
789 *)
790 getent ahostsv4 "$host" | awk '{ print $1 }' | head -n1
791 ;;
792 esac
793 }
794
795 dig() {
796 command dig +nostats +nocmd "$@"
797 }
798 # Output with sections sorted, and removal of query id, so 2 dig outputs can be diffed.
799 digsort() {
800 local sec
801 sec=
802 dig +nordflag "$@" | sed -r 's/^(;; ->>HEADER<<-.*), id: .*/\1/' | while read -r l; do
803 if [[ $l == [^\;]* ]]; then
804 sec+="$l"$'\n'
805 else
806 if [[ $sec ]]; then
807 printf "%s" "$sec" | sort
808 sec=
809 fi
810 printf "%s\n" "$l"
811 fi
812 done
813 }
814 ccomp dig digsort
815 # compare digs to the 2 servers
816 # usage: digdiff @server1 @server2 DIG_ARGS
817 # note: only the soa master nameserver will respond with
818 # ra "recursive answer" flag. That difference is meaningless afaik.
819 digdiff() {
820 local s1 s2
821 s1=$1
822 shift
823 s2=$1
824 shift
825 digsort $s1 "$@" | tee /tmp/digdiff
826 diff -u /tmp/digdiff <(digsort $s2 "$@")
827 }
828
829 dt() {
830 date "+%A, %B %d, %r" "$@"
831 }
832 dtr() {
833 date -R "$@"
834 }
835 ccomp date dt dtr
836
837 dus() { # du, sorted, default arg of
838 du -sh ${@:-*} | sort -h
839 }
840 ccomp du dus
841
842
843 e() { printf "%s\n" "$*"; }
844
845 # echo args
846 ea() {
847 if (( ! $# )); then
848 echo no args
849 fi
850 for arg; do
851 printf "%qEOL\n" "${arg}"
852 printf "%s" "${arg}" |& hexdump -C
853 done
854 }
855 # echo vars. print var including escapes, etc
856 ev() {
857 if (( ! $# )); then
858 echo no args
859 fi
860 for arg; do
861 if [[ -v $arg ]]; then
862 printf "%qEOL\n" "${!arg}"
863 printf "%s" "${!arg}" |& hexdump -C
864 else
865 echo arg $arg is unset
866 fi
867 done
868 }
869
870 ediff() {
871 [[ ${#@} == 2 ]] || { echo "error: ediff requires 2 arguments"; return 1; }
872 emacs --eval "(ediff-files \"$1\" \"$2\")"
873 }
874
875 # mail related
876 etail() {
877 tail -F /var/log/exim4/mainlog -n 200 "$@"
878 }
879 etail2() {
880 tail -F /var/log/exim4/mymain -n 200 "$@"
881 }
882
883 ccomp tail etail etail2
884
885 # print exim old pids
886 eoldpids() {
887 local configtime pid piduptime now daemonpid
888 printf -v now '%(%s)T' -1
889 configtime=$(stat -c%Y /var/lib/exim4/config.autogenerated)
890 if [[ -s /run/exim4/exim.pid ]]; then
891 daemonpid=$(cat /run/exim4/exim.pid)
892 fi
893 for pid in $(pgrep -f '^/usr/sbin/exim4( |$)'); do
894 # the daemonpid gets reexeced on HUP (service reloads), keeping its same old timestamp
895 if [[ $pid == $daemonpid ]]; then
896 continue
897 fi
898 piduptime=$(awk -v ticks="$(getconf CLK_TCK)" 'NR==1 { now=$1; next } END { printf "%9.0f\n", now - ($20/ticks) }' /proc/uptime RS=')' /proc/$pid/stat) ||: # sometimes pids disappear pretty fast
899 if (( configtime > now - piduptime )); then
900 echo $pid
901 fi
902 done
903 }
904
905 # exim tail but only watch lines from new pids
906 etailnew() {
907 local pid oldpids
908 for pid in $(eoldpids); do
909 oldpids+="$pid|"
910 done
911 if [[ $oldpids ]]; then
912 etail | awk '$3 !~ /^\[('"${oldpids%|}"')\]$/'
913 else
914 etail
915 fi
916 }
917 # exim watch as old pids go away
918 ewatchold() {
919 local configtime pid piduptime now
920 local -i count
921 local -a oldpids
922 count=0
923 while true; do
924 oldpids=($(eoldpids))
925 if (( ! ${#oldpids[@]} )); then
926 return
927 fi
928 # print the date every 20 iterations
929 if (( ! count % 20 )); then
930 date
931 fi
932 count+=1
933 ps -f -p "${oldpids[*]}"
934 sleep 1
935 done
936 }
937
938 eless() {
939 less /var/log/exim4/mainlog
940 }
941 ccomp less eless
942 eqcat() {
943 exiqgrep -ir.\* -o 60 | while read -r i; do
944 hlm exim -Mvc $i
945 echo
946 hlm exigrep $i /var/log/exim4/mainlog | cat ||:
947 done
948 }
949 eqrmf() {
950 # other ways to get the list of message ids:
951 # exim -bp | awk 'NF == 4 {print $3}'
952 # # this is slower 160ms, vs 60.
953 # exipick -i
954 exiqgrep -ir.\* | xargs exim -Mrm
955 }
956
957 econfdevnew() {
958 rm -rf /tmp/edev
959 mkdir -p /tmp/edev/etc
960 cp -ra /etc/exim4 /tmp/edev/etc
961 cp -ra /etc/alias* /tmp/edev/etc
962 find /tmp/edev/etc/exim4 -type f -execdir sed -i "s,/etc/,/tmp/edev/etc/,g" '{}' +
963 econfdev
964 }
965 econfdev() {
966 update-exim4.conf -d /tmp/edev/etc/exim4 -o /tmp/edev/e.conf
967 }
968
969
970
971
972 fa() {
973 # find array. make an array of file names found by find into $x
974 # argument: find arguments
975 # return: find results in an array $x
976 while read -rd ''; do
977 x+=("$REPLY");
978 done < <(find "$@" -print0);
979 }
980
981 faf() { # find all files. use -L to follow symlinks
982 find "$@" -not \( -name .svn -prune -o -name .git -prune \
983 -o -name .hg -prune -o -name .editor-backups -prune \
984 -o -name .undo-tree-history -prune \) -type f 2>/dev/null
985 }
986
987 # full path without resolving symlinks
988 fp() {
989 local dir base
990 base="${1##*/}"
991 dir="${1%$base}"
992 printf "%s/%s\n" $(cd $dir; pwd) "$base"
993 }
994
995
996 # mail related
997 frozen() {
998 rm -rf /tmp/frozen
999 sudo mailq |gr frozen|awk '{print $3}' | while read -r id; do
1000 sudo exim -Mvl $id
1001 echo
1002 sudo exim -Mvh $id
1003 echo
1004 sudo exim -Mvb $id
1005 echo -e '\n\n##############################\n'
1006 done | tee -a /tmp/frozen
1007 }
1008 frozenrm() {
1009 local ids=()
1010 while read -r line; do
1011 printf '%s\n' "$line"
1012 ids+=($(printf '%s\n' "$line" |gr frozen|awk '{print $3}'))
1013 done < <(s mailq)
1014 echo "sleeping for 2 in case you change your mind"
1015 sleep 2
1016 sudo exim -Mrm "${ids[@]}"
1017 }
1018
1019 funce() {
1020 # like -e for functions. returns on error.
1021 # at the end of the function, disable with:
1022 # trap ERR
1023 trap 'echo "${BASH_COMMAND:+BASH_COMMAND=\"$BASH_COMMAND\" }
1024 ${FUNCNAME:+FUNCNAME=\"$FUNCNAME\" }${LINENO:+LINENO=\"$LINENO\" }\$?=$?"
1025 trap ERR
1026 return' ERR
1027 }
1028
1029 getdir () {
1030 local help="Usage: getdir [--help] PATH
1031 Output the directory of PATH, or just PATH if it is a directory."
1032 if [[ $1 == --help ]]; then
1033 echo "$help"
1034 return 0
1035 fi
1036 if [[ $# -ne 1 ]]; then
1037 echo "getdir error: expected 1 argument, got $#"
1038 return 1
1039 fi
1040 if [[ -d $1 ]]; then
1041 echo "$1"
1042 else
1043 local dir
1044 dir="$(dirname "$1")"
1045 if [[ -d $dir ]]; then
1046 echo "$dir"
1047 else
1048 echo "getdir error: directory does not exist"
1049 return 1
1050 fi
1051 fi
1052 }
1053
1054 git_empty_branch() { # start an empty git branch. carefull, it deletes untracked files.
1055 [[ $# == 1 ]] || { echo 'need a branch name!'; return 1;}
1056 local root
1057 root=$(gitroot) || return 1 # function to set gitroot
1058 builtin cd "$root"
1059 git symbolic-ref HEAD refs/heads/$1
1060 rm .git/index
1061 git clean -fdx
1062 }
1063
1064 # shellcheck disable=SC2120
1065 gitroot() {
1066 local help="Usage: gitroot [--help]
1067 Print the full path to the root of the current git repo
1068
1069 Handles being within a .git directory, unlike git rev-parse --show-toplevel,
1070 and works in older versions of git which did not have that."
1071 if [[ $1 == --help ]]; then
1072 echo "$help"
1073 return
1074 fi
1075 local p
1076 p=$(git rev-parse --git-dir) || { echo "error: not in a git repo" ; return 1; }
1077 [[ $p != /* ]] && p=$PWD
1078 echo "${p%%/.git}"
1079 }
1080
1081 g() {
1082
1083 # todo: patch emacs so it will look elsewhere. this is kinda sad:
1084 # https://emacs.stackexchange.com/questions/4253/how-to-start-emacs-with-a-custom-user-emacs-directory
1085
1086 local args gdb=false
1087
1088 if [[ $EMACSDIR ]]; then
1089 path-add "$EMACSDIR/lib-src" "$EMACSDIR/src"
1090 fi
1091
1092 if [[ $DISPLAY ]]; then
1093 args=-n
1094 fi
1095
1096 if (( $# == 0 )); then
1097 args+=" -c"
1098 fi
1099 # duplicate -c, but oh well
1100 if ! pgrep -u $EUID emacsclient; then
1101 if (( $# == 0 )) && type -p gdb &>/dev/null; then
1102 gdb=true
1103 else
1104 args+=" -c"
1105 fi
1106 fi
1107 if [[ $EMACSDIR ]]; then
1108 # Alter the path here, otherwise the nfs mount gets triggered on the
1109 # first path lookup when emacs is not being used.
1110 PATH="$EMACSDIR/lib-src:$EMACSDIR/src:$PATH" EHOME=$HOME HOME=$EMACSDIR m emacsclient -a "" $args "$@"
1111 else
1112 if $gdb; then
1113 # due to a bug, we cant debug from the start unless we get a new gdb
1114 # https://sourceware.org/bugzilla/show_bug.cgi?id=24454
1115 # m gdb -ex="set follow-fork-mode child" -ex=r -ex=quit --args emacs --daemon
1116 m emacsclient -a "" $args "$@"
1117 sleep 1
1118 cd /a/opt/emacs-$(distro-name)$(distro-num)
1119 s gdb -p $(pgrep -f 'emacs --daemon') -ex c
1120 cd -
1121 else
1122 m emacsclient -a "" $args "$@"
1123 fi
1124 fi
1125 }
1126
1127 # force terminal version
1128 gn() {
1129 g -n "$@"
1130 }
1131
1132 gmacs() {
1133 # quit will prompt if the program crashes.
1134 gdb -ex=r -ex=quit --args emacs "$@"; r;
1135 }
1136
1137 gdkill() {
1138 # kill the emacs daemon
1139 pk1 emacs --daemon
1140 }
1141
1142 gr() {
1143 grep -iIP --color=auto "$@" || return $?
1144 }
1145 grr() { # grep recursive
1146 # Don't return 1 on nonmatch because this is meant to be
1147 # interactive, not in a conditional.
1148 if [[ ${#@} == 1 ]]; then
1149 grep --exclude-dir='*.emacs.d' --exclude-dir='*.git' -riIP --color=auto "$@" . || [[ $? == 1 ]]
1150 else
1151 grep --exclude-dir='*.emacs.d' --exclude-dir='*.git' -riIP --color=auto "$@" || [[ $? == 1 ]]
1152 fi
1153 }
1154 ccomp grep gr grr
1155
1156 rg() { grr "$@"; }
1157 ccomp grep rg
1158
1159 hr() { # horizontal row. used to break up output
1160 printf "$(tput setaf 5 2>/dev/null ||:)â–ˆ$(tput sgr0 2>/dev/null||:)%.0s" $(eval echo "{1..${COLUMNS:-60}}")
1161 echo
1162 }
1163 # highlight
1164 hl() {
1165 local col input_len=0
1166 for arg; do
1167 input_len=$((input_len + 1 + ${#arg}))
1168 done
1169 col=$((60 - input_len))
1170 printf "\e[1;97;41m%s" "$*"
1171 if (( col > 0 )); then
1172 printf "\e[1;97;41m \e[0m%.0s" $(eval echo "{1..${col}}")
1173 fi
1174 echo
1175 }
1176 hlm() { hl "$*"; "$@"; }
1177
1178 hrcat() { local f; for f; do [[ -f $f ]] || continue; hr; echo "$f"; cat "$f"; done }
1179
1180
1181 # get latest hub and run it
1182 # main command to use:
1183 # hub pull-request --no-edit
1184 # --no-edit means to use the first commit\'s message as the pull request message.
1185 # If that fails, try doing
1186 # hub pull-request --no-edit -b UPSTREAM_OWNER:branch
1187 # where branch is usually master. it does the pr against your current branch.
1188 #
1189 # On first use, you input username/pass and it gets an oath token so you dont have to repeat
1190 # it\'s at ~/.config/hub
1191 hub() {
1192 local up uptar updir p
1193 p=/github/hub/releases/
1194 up=https://github.com/$(curl -s https://github.com$p| grep -o $p'download/[^/]*/hub-linux-amd64[^"]*' | head -n1)
1195 uptar=${up##*/}
1196 updir=${uptar%.tgz}
1197 if [[ ! -e /a/opt/$updir ]]; then
1198 rm -rf /a/opt/hub-linux-amd64*
1199 wget -P /a/opt $up
1200 tar -C /a/opt -zxf /a/opt/$uptar
1201 rm -f /a/opt/$uptar
1202 fi
1203 if ! which hub &>/dev/null; then
1204 sudo /a/opt/$updir/install
1205 fi
1206
1207 # save token across computers
1208 if [[ ! -L ~/.config/hub ]]; then
1209 if [[ -e ~/.config/hub ]]; then
1210 mv ~/.config/hub /p/c/subdir_files/.config/
1211 fi
1212 if [[ -e /p/c/subdir_files/.config/hub ]]; then
1213 conflink
1214 fi
1215 fi
1216 command hub "$@"
1217 }
1218
1219 i() { git "$@"; }
1220 ccomp git i
1221
1222 ic() {
1223 # fast commit all
1224 git commit -am "$*"
1225 }
1226
1227 ipp() {
1228 git pull
1229 git push
1230 }
1231
1232
1233 ifn() {
1234 # insensitive find
1235 find -L . -not \( -name .svn -prune -o -name .git -prune \
1236 -o -name .hg -prune -o -name .editor-backups -prune \
1237 -o -name .undo-tree-history -prune \) -iname "*$**" 2>/dev/null
1238 }
1239
1240 ifd() {
1241 # insensitive find directory
1242 find -L . -type d -not \( -name .svn -prune -o -name .git -prune \
1243 -o -name .hg -prune -o -name .editor-backups -prune \
1244 -o -name .undo-tree-history -prune \) -iname "*$**" 2>/dev/null
1245 }
1246
1247
1248 ipdrop() {
1249 sudo iptables -A INPUT -s $1 -j DROP
1250 }
1251
1252
1253 istext() {
1254 grep -Il "" "$@" &>/dev/null
1255 }
1256
1257 jtail() {
1258 journalctl -n 10000 -f "$@"
1259 }
1260 jr() { journalctl "$@" ; }
1261 jrf() { journalctl -f "$@" ; }
1262 jru() {
1263 journalctl -u exim4 _SYSTEMD_INVOCATION_ID=$(systemctl show -p InvocationID --value $1)
1264 }
1265
1266 l() {
1267 if [[ $PWD == /[iap] ]]; then
1268 command ls -A --color=auto -I lost+found "$@"
1269 else
1270 command ls -A --color=auto "$@"
1271 fi
1272 }
1273
1274 lcn() { locate -i "*$**"; }
1275
1276 lg() { LC_COLLATE=C.UTF-8 ll --group-directories-first "$@"; }
1277
1278 lt() { ll -tr "$@"; }
1279
1280 lld() { ll -d "$@"; }
1281
1282 ccomp ls l lg lt lld ll
1283
1284 # low recursively
1285 lowr() {
1286 local f dirs i a
1287 local -a all
1288 for dirs in false true; do
1289 for f; do
1290 if [[ -d $f ]]; then
1291 all=("$f"/**)
1292 # reverse the order to rename the nested dirs first.
1293 # note: 0 element is the dir itself
1294 for ((i=${#all[@]}-1; i>=1; i--)); do
1295 a="${all[i]}"
1296 if $dirs && [[ -d $a ]]; then
1297 # e dirs low "$a" # debug
1298 low "$a"
1299 elif ! $dirs && [[ ! -d $a && -e $a ]]; then
1300 # debug
1301 # e not dirs low "$a" # debug
1302 low "$a"
1303 fi
1304 done
1305 fi
1306 # just rename all the top level args on the second pass
1307 if $dirs; then
1308 # e final dirs low "$f" # debug
1309 low "$f"
1310 fi
1311 done
1312 done
1313 }
1314
1315 low() { # make filenames lowercase, remove bad chars
1316 local arg new dir f
1317 for arg; do
1318 arg="${arg%%+(/)}" # remove trailing slashes. assumes we have extglob on.
1319 dir="${arg%/*}"
1320 if (( ${#dir} == ${#arg} )); then
1321 dir=.
1322 fi
1323 f="${arg##*/}"
1324 new="${f,,}" # downcase
1325 new="${new//[^a-zA-Z0-9._-]/_}" # sub bad chars
1326 new="${new#"${new%%[[:alnum:]]*}"}" # remove leading/trailing non-alnum
1327 new="${new%"${new##*[[:alnum:]]}"}"
1328 # remove bad underscores, like __ and _._
1329 new=$(echo $new | sed -r 's/__+/_/g;s/_+([.-])|([.-])_+/\1/g')
1330 safe_rename "$dir/$f" "$dir/$new" || return 1
1331 done
1332 return 0
1333 }
1334
1335 lower() { # make first letter of filenames lowercase.
1336 local x
1337 for x in "$@"; do
1338 if [[ ${x::1} == [A-Z] ]]; then
1339 y=$(tr '[:upper:]' '[:lower:]' <<<"${x::1}")"${x:1}"
1340 safe_rename "$x" "$y" || return 1
1341 fi
1342 done
1343 }
1344
1345
1346 k() { # history search
1347 grep -iP --binary-files=text "$@" ${HISTFILE:-~/.bash_history} | tail -n 80 || [[ $? == 1 ]];
1348 }
1349 ks() { # history search with context
1350 # args are an extended regex used by sed
1351 history | sed -nr "h;s/^\s*(\S+\s+){4}//;/$*/{g;p}" | tail -n 80 || [[ $? == 1 ]];
1352 }
1353 ksu() { # history search unique
1354 grep -P --binary-files=text "$@" ${HISTFILE:-~/.bash_history} | uniq || [[ $? == 1 ]];
1355 }
1356
1357 # todo: id like to do maybe a daily or hourly cronjob to
1358 # check that my history file size is increasing. Ive had it
1359 # inexplicably truncated in the past.
1360 histrm() {
1361 history -n
1362 HISTTIMEFORMAT= history | awk -v IGNORECASE=1 '{ a=$1; sub(/^ *[^ ]+ */, "") }; /'"$*"'/'
1363 read -p "press anything but contrl-c to delete"
1364 for entry in $(HISTTIMEFORMAT= history | awk -v IGNORECASE=1 '{ a=$1; sub(/^ *[^ ]+ */, "") }; /'"$*"'/ { print a }' | tac); do
1365 history -d $entry
1366 done
1367 history -w
1368 }
1369
1370 ccomp grep k ks ksu histrm
1371
1372
1373 make-targets() {
1374 # show make targets, via http://stackoverflow.com/questions/3063507/list-goals-targets-in-gnu-make
1375 make -qp | awk -F':' '/^[a-zA-Z0-9][^$#\/\t=]*:([^=]|$)/ {split($1,A,/ /);for(i in A)print A[i]}'
1376 }
1377
1378 mkc() {
1379 mkdir "$1"
1380 c "$1"
1381 }
1382 ccomp mkdir mkc
1383
1384 mkct() {
1385 mkc $(mktemp -d)
1386 }
1387
1388 mkt() { # mkdir and touch file
1389 local path="$1"
1390 mkdir -p "$(dirname "$path")"
1391 touch "$path"
1392 }
1393
1394 # shellcheck disable=SC2032
1395 mkdir() { command mkdir -p "$@"; }
1396
1397 nags() {
1398 # https://github.com/HenriWahl/Nagstamon/issues/357
1399 if ! pgrep -f /usr/lib/notification-daemon/notification-daemon >/dev/null; then
1400 /usr/lib/notification-daemon/notification-daemon &
1401 fi
1402 /usr/bin/nagstamon &
1403 }
1404
1405 nmt() {
1406 s nmtui-connect "$@"
1407 }
1408
1409 nopanic() {
1410 # shellcheck disable=SC2024
1411 sudo tee -a /var/log/exim4/paniclog-archive </var/log/exim4/paniclog; sudo truncate -s0 /var/log/exim4/paniclog
1412 }
1413
1414 p8() { ping "$@" 8.8.8.8; }
1415 p6() { ping6 "$@" 2001:4860:4860::8888; }
1416
1417 pkx() { # package extract
1418 local pkg cached tmp f
1419 c $(mktemp -d)
1420 pkg=$1
1421 # shellcheck disable=SC2012
1422 cached=$(ls -t /var/cache/apt/archives/$pkg* | tail -n1 2>/dev/null) ||:
1423 if [[ $cached ]]; then
1424 cp $cached .
1425 else
1426 aptitude download $pkg || return 1
1427 fi
1428 tmp=(*); f=${tmp[0]} # only 1 expected
1429 ex $f
1430 rm -f $f
1431 }
1432
1433 # pgrep and kill
1434 pk1() {
1435 local pid
1436 pid=($(pgrep -f "$*"))
1437 case ${#pid[@]} in
1438 1)
1439 # shellcheck disable=SC2128
1440 {
1441 ps -F $pid
1442 m kill $pid
1443 }
1444 ;;
1445 0) echo "no pid found" ;;
1446 *)
1447 ps -F ${pid[@]}
1448 ;;
1449 esac
1450 }
1451
1452 psg () {
1453 local x y help
1454 help="Usage: psg [--help] GREP_ARGS
1455 grep ps and output in a nice format"
1456 if [[ $1 == --help ]]; then
1457 echo "$help"
1458 return
1459 fi
1460 x=$(ps -eF)
1461 # final grep is because some commands tend to have a lot of trailing spaces
1462 y=$(echo "$x" | grep -iP "$@" | grep -o '.*[^ ]') ||:
1463 if [[ $y ]]; then
1464 echo "$x" | head -n 1 || [[ $? == 141 ]]
1465 echo "$y"
1466 fi
1467 }
1468
1469 pubip() { curl -4s https://icanhazip.com; }
1470 pubip6() { curl -6s https://icanhazip.com; }
1471 whatismyip() { pubip; }
1472
1473
1474 q() { # start / launch a program in the backround and redir output to null
1475 "$@" &> /dev/null &
1476 }
1477
1478 # shellcheck disable=SC2120
1479 r() {
1480 if [[ $HISTFILE ]]; then
1481 history -a # save history
1482 fi
1483 trap ERR # this avoids a segfault
1484 exit ${1:0}
1485 # i had this redir, not sure why
1486 # exit "$@" 2>/dev/null
1487 }
1488
1489 # scp is insecure and deprecated.
1490 scp() {
1491 rsync --inplace "$@"
1492 }
1493
1494 randport() {
1495 # available high ports are 1024-65535,
1496 # but lets skip things that are more likely to be in use
1497 python3 <<'EOF'
1498 import secrets
1499 print(secrets.SystemRandom().randrange(10002,65500))
1500 EOF
1501 }
1502
1503 # reapply bashrc
1504 reb() {
1505 source ~/.bashrc
1506 }
1507
1508 rl() {
1509 readlink -f "$@"
1510 }
1511 ccomp readlink rl
1512
1513 rsd() {
1514 # rsync, root is required to keep permissions right.
1515 # rsync --archive --human-readable --verbose --itemize-changes --checksum \(-ahvic\) \
1516 # --no-times --delete
1517 # basically, make an exact copy, use checksums instead of file times to be more accurate
1518 rsync -ahvic --delete "$@"
1519 }
1520 rsa() {
1521 # like rlu, but dont delete files on the target end which
1522 # do not exist on the original end.
1523 rsync -ahvic "$@"
1524 }
1525 rst() {
1526 # rl without preserving modification time.
1527 rsync -ahvic --delete --no-t "$@"
1528 }
1529 rsu() { # [OPTS] HOST PATH
1530 # eg. rlu -opts frodo /testpath
1531 # relative paths will expanded with readlink -f.
1532 opts=("${@:1:$#-2}") # 1 to last -2
1533 path="${*:$#}" # last
1534 host="${*:$#-1:1}" # last -1
1535 if [[ $path == .* ]]; then
1536 path=$(readlink -f $path)
1537 fi
1538 # rync here uses checksum instead of time so we dont mess with
1539 # unison relying on time as much. g is for group, same reason
1540 # to keep up with unison.
1541 m s rsync -rlpchviog --relative "${opts[@]}" "$path" "root@$host:/";
1542 }
1543 ccomp rsync rsd rsa rst rsu
1544
1545 # find programs listening on a port
1546 ssp() {
1547 local port=$1
1548 # to figure out these args, i had to look at the man page from git version, as of 2022-04.
1549 s ss -lpn state listening sport = $port
1550 }
1551
1552 resolvcat() {
1553 local f
1554 if [[ $(systemctl is-active nscd ||:) != inactive ]]; then
1555 m s nscd -i hosts
1556 fi
1557 f=/etc/resolv.conf
1558 echo $f:; ccat $f
1559 hr; s ss -lpn sport = 53
1560 if systemctl is-enabled dnsmasq &>/dev/null || [[ $(systemctl is-active dnsmasq ||:) != inactive ]]; then
1561 # this will fail is dnsmasq is failed
1562 hr; m ser status dnsmasq | cat || :
1563 f=/etc/dnsmasq.conf
1564 hr; echo $f:; ccat $f
1565 hr; m grr '^ *(servers-file|server) *=|^ *no-resolv *$' /etc/dnsmasq.conf /etc/dnsmasq.d
1566 f=/etc/dnsmasq-servers.conf
1567 hr; echo $f:; ccat $f
1568 fi
1569 hr
1570 echo /etc/nsswitch.conf:
1571 grep '^ *hosts:' /etc/nsswitch.conf
1572 if systemctl is-enabled systemd-resolved &>/dev/null || [[ $(systemctl is-active systemd-resolved ||:) != inactive ]]; then
1573 hr; m ser status systemd-resolved | cat || :
1574 hr; m systemd-resolve --status | cat
1575 fi
1576
1577 }
1578 rcat() {
1579 resolvcat | less
1580 }
1581 reresolv() {
1582 if [[ $(systemctl is-active nscd ||:) != inactive ]]; then
1583 m ser stop nscd
1584 sleep .5
1585 m ser start nscd
1586 m sudo nscd -i hosts
1587 fi
1588 if [[ $(systemctl is-active dnsmasq ||:) != inactive ]]; then
1589 m sudo systemctl restart dnsmasq
1590 fi
1591 if [[ $(systemctl is-active systemd-resolved ||:) != inactive ]]; then
1592 m sudo systemctl restart systemd-resolved
1593 fi
1594 if type -P resolvectl &>/dev/null; then
1595 resolvectl flush-caches
1596 fi
1597 }
1598
1599 rmstrips() {
1600 ssh fencepost head -n 300 /gd/gnuorg/EventAndTravelInfo/rms-current-trips.txt | less
1601 }
1602
1603 sudo () {
1604 command sudo "$@" || return $?
1605 DID_SUDO=true
1606 }
1607 s() {
1608 # background
1609 # I use a function because otherwise we cant use in a script,
1610 # cant assign to variable.
1611 #
1612 # note: gksudo is recommended for X apps because it does not set the
1613 # home directory to the same, and thus apps writing to ~ fuck things up
1614 # with root owned files.
1615 #
1616 if [[ $EUID != 0 || $1 == -* ]]; then
1617 # shellcheck disable=SC2034
1618 SUDOD="$PWD" command sudo -i "$@"
1619 DID_SUDO=true
1620 else
1621 "$@"
1622 fi
1623 }
1624 sb() { # sudo bash -c
1625 # use sb instead of s is for sudo redirections,
1626 # eg. sb 'echo "ok fine" > /etc/file'
1627 # shellcheck disable=SC2034
1628 local SUDOD="$PWD"
1629 sudo -i bash -c "$@"
1630 }
1631 ccomp sudo s sb
1632
1633 safe_rename() { # warn and dont rename if file exists.
1634 # mv -n exists, but it\'s silent
1635 if [[ $# != 2 ]]; then
1636 echo safe_rename error: $# args, need 2 >2
1637 return 1
1638 fi
1639 if [[ $1 != "$2" ]]; then # yes, we want to silently ignore this
1640 if [[ -e $2 || -L $2 ]]; then
1641 echo "Cannot rename $1 to $2 as it already exists."
1642 else
1643 mv -vi "$1" "$2"
1644 fi
1645 fi
1646 }
1647
1648
1649 sd() {
1650 sudo dd status=none of="$1"
1651 }
1652
1653 ser() {
1654 if type -p systemctl &>/dev/null; then
1655 s systemctl "$@"
1656 else
1657 if (( $# >= 3 )); then
1658 echo iank: ser expected 2 or less arguments
1659 return 1
1660 fi
1661 s service $2 $1
1662 fi
1663 }
1664 serstat() {
1665 systemctl -n 40 status "$@"
1666 }
1667
1668 seru() { systemctl --user "$@"; }
1669 # like restart, but do nothing if its not already started
1670 srestart() {
1671 local service=$1
1672 if [[ $(s systemctl --no-pager show -p ActiveState $service ) == ActiveState=active ]]; then
1673 systemctl restart $service
1674 fi
1675 }
1676
1677 setini() { # set a value in a .ini style file
1678 key="$1" value="$2" section="$3" file="$4"
1679 if [[ -s $file ]]; then
1680 sed -ri -f - "$file" <<EOF
1681 # remove existing keys
1682 / *\[$section\]/,/^ *\[[^]]+\]/{/^\s*$key[[:space:]=]/d}
1683 # add key
1684 /^\s*\[$section\]/a $key=$value
1685 # from section to eof, do nothing
1686 /^\s*\[$section\]/,\$b
1687 # on the last line, if we haven't found section yet, add section and key
1688 \$a [$section]\\
1689 $key=$value
1690 EOF
1691 else
1692 cat >"$file" <<EOF
1693 [$section]
1694 $key=$value
1695 EOF
1696 fi
1697 }
1698
1699 sgo() { # service go
1700 service=$1
1701 ser restart $service || return 1
1702 if type -p systemctl &>/dev/null; then
1703 ser enable $service
1704 fi
1705 }
1706 soff () {
1707 for service; do
1708 # ignore services that dont exist
1709 if systemctl cat $service &>/dev/null; then
1710 ser stop $service;
1711 ser disable $service
1712 fi
1713 done
1714 }
1715
1716 sgu() {
1717 systemctl list-unit-files | rg "$@"
1718 }
1719
1720
1721 sk() {
1722
1723
1724 # disable a warning with:
1725 # shellcheck disable=SC2206 # reasoning
1726
1727 # see bash-template/style-guide.md for justifications
1728
1729 local quotes others
1730 quotes=2048,2068,2086,2206
1731 others=2029,2033,2164
1732 shellcheck -W 999 -x -e $quotes,$others "$@" || return $?
1733 }
1734
1735
1736 # sl: ssh, but firsh rsync our bashrc and related files to a special
1737 # directory on the remote host if needed.
1738
1739 # Some environment variables and files need to be setup for this to work
1740 # (mine are set at the beginning of this file)
1741
1742 # SL_FILES_DIR: Environment variable. Path to folder which should at
1743 # least have a .bashrc file or symlink. This dir will be rsynced to ~ on
1744 # remote hosts (top level symlinks are resolved) unless the host already
1745 # has a $SL_FILES_DIR/.bashrc. In that case, we assume it is a host you
1746 # control and sync files to separately and already has the ~/.bashrc you
1747 # want. The remote bash will also take its .inputrc config from this
1748 # folder (default of not existing is fine). Mine looks like this:
1749 # https://iankelling.org/git/?p=distro-setup;a=tree;f=sl/.iank
1750
1751 # SL_INFO_DIR: Environment variable. This folder stores info about what
1752 # we detected on the remote system and when we last synced. It will be created
1753 # if it does not exist. Sometimes you may want to forget about a
1754 # remote system, you can use sl --rsync, or the function for that slr
1755 # below.
1756
1757 # SL_TEST_CMD: Env var. Meant to be used to vary the files synced
1758 # depending on the remote host. Run this string on the remote host the
1759 # first time sl is run (or if we run slr). The result is passed to
1760 # SL_TEST_HOOK. For example,
1761 # export SL_TEST_CMD=". /etc/os-release ; echo \${VERSION//[^a-zA-Z0-9]/}"
1762
1763 # SL_TEST_HOOK: Env var. It is run as $SL_TEST_HOOK. This can set
1764 # $SL_FILES_DIR to vary the files synced.
1765
1766 # SL_RSYNC_ARGS: Env var. String of arguments passed to rsync. For
1767 # example to exclude files within a directory. Note, excluded
1768 # files wont be deleted on rsync, you can add --delete-excluded
1769 # to the rsync command if that is desired.
1770
1771 # SL_SSH_ARGS: Env var. Default arguments passed to ssh.
1772
1773 # For when ~/.bashrc is already customized on the remote server, you
1774 # might find it problematic that ~/.bashrc is sourced for ALL ssh
1775 # commands, even in scripts. This paragraph is all about that. bash
1776 # scripts dont source ~/.bashrc, but call ssh in scripts and you get
1777 # ~/.bashrc. You dont want this. .bashrc is meant for interactive shells
1778 # and if you customize it, probably has bugs from time to time. This is
1779 # bad. Here's how I fix it. I have a special condition to "return" in my
1780 # .bashrc for noninteractive ssh shells (copy that code). Then use this
1781 # function or similar that passes LC_USEBASHRC=t when sshing and I want
1782 # my bashrc. Also, I don't keep most of my bashrc in .bashrc, i source a
1783 # separate file because even if I return early on, the whole file gets
1784 # parsed which can fail if there is a syntax error.
1785 sl() {
1786 # Background on LC_USEBASHRC var (no need to read if you just want to
1787 # use this function): env variables sent across ssh are strictly
1788 # limited, but we get LC_* at least in debian based machines, so we
1789 # just make that * be something no normal program would use. Note, on
1790 # hosts that dont allow LC_* I start an inner shell with LC_USEBASHRC
1791 # set, and the inner shell also allows running a nondefault
1792 # .bashrc. This means the outer shell still ran the default .bashrc,
1793 # but that is the best we can do.
1794
1795 local now args remote dorsync haveinfo tmpa sshinfo tmp tmp2 type info_sec force_rsync \
1796 sync_dirname testcmd extra_info testbool files_sec sl_test_cmd sl_test_hook
1797 declare -a args tmpa
1798
1799 args=($SL_SSH_ARGS)
1800
1801 # ssh [-1246Antivivisectionist] [-b bind_address] [-c cipher_spec] [-D [bind_address:]port]
1802 # [-E log_file] [-e escape_char] [-F configfile] [-I pkcs11] [-i identity_file] [-L address]
1803 # [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port] [-Q query_option]
1804 # [-R address] [-S ctl_path] [-W host:port] [-w local_tun[:remote_tun]] [user@]hostname
1805 # [command]
1806
1807 # ssh [-46AaCfGgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]
1808 # [-D [bind_address:]port] [-E log_file] [-e escape_char]
1809 # [-F configfile] [-I pkcs11] [-i identity_file]
1810 # [-J [user@]host[:port]] [-L address] [-l login_name] [-m mac_spec]
1811 # [-O ctl_cmd] [-o option] [-p port] [-Q query_option] [-R address]
1812 # [-S ctl_path] [-W host:port] [-w local_tun[:remote_tun]]
1813
1814 force_rsync=false
1815 if [[ $1 == --rsync ]]; then
1816 force_rsync=true
1817 shift
1818 fi
1819
1820 sl_test_cmd=$SL_TEST_CMD
1821 sl_test_hook=$SL_TEST_HOOK
1822 sl_rsync_args=$SL_RSYNC_ARGS
1823 while [[ $1 ]]; do
1824 case "$1" in
1825 --rsync)
1826 force_rsync=true
1827 ;;
1828 --sl-test-cmd)
1829 sl_test_cmd="$2"
1830 shift
1831 ;;
1832 --sl-test-hook)
1833 sl_test_hook="$2"
1834 shift
1835 ;;
1836 --sl-rsync-args)
1837 sl_rsync_args="$2"
1838 shift
1839 ;;
1840 *)
1841 break
1842 ;;
1843 esac
1844 shift
1845 done
1846
1847 while [[ $1 ]]; do
1848 case "$1" in
1849 # note we dont support things like -4oOption
1850 -[46AaCfGgKkMNnqsTtVvXxYy]*)
1851 args+=("$1"); shift
1852 ;;
1853 -[bcDEeFIiJLlmOopQRSWw]*)
1854 # -oOption etc is valid
1855 if (( ${#1} >= 3 )); then
1856 args+=("$1"); shift
1857 else
1858 args+=("$1" "$2"); shift 2
1859 fi
1860 ;;
1861 *)
1862 break
1863 ;;
1864 esac
1865 done
1866 remote="$1"
1867 if [[ ! $remote ]]; then
1868 echo $0: error hostname required >&2
1869 return 1
1870 fi
1871 shift
1872
1873 if [[ ! $SL_INFO_DIR ]]; then
1874 echo error: missing '$SL_INFO_DIR' env var >&2
1875 return 1
1876 fi
1877
1878 dorsync=false
1879 haveinfo=false
1880 tmpa=($SL_INFO_DIR/???????????"$remote")
1881 sshinfo=${tmpa[0]}
1882 if [[ -e $sshinfo ]]; then
1883 if $force_rsync; then
1884 rm -f $sshinfo
1885 else
1886 haveinfo=true
1887 fi
1888 fi
1889 if $haveinfo; then
1890 tmp=${sshinfo[0]##*/}
1891 tmp2=${tmp::11}
1892 type=${tmp2: -1}
1893 extra_info=$(cat $sshinfo)
1894 else
1895 # we test for string to know ssh succeeded
1896 testbool="test -e $SL_FILES_DIR/.bashrc -a -L .bashrc -a -v LC_USEBASHRC"
1897 testcmd="if $testbool; then printf y; else printf n; fi"
1898 if ! tmp=$(LC_USEBASHRC=y command ssh "${args[@]}" "$remote" "$testcmd; $sl_test_cmd"); then
1899 echo failed sl test. doing plain ssh -v
1900 command ssh -v "${args[@]}" "$remote"
1901 fi
1902 if [[ $tmp == y* ]]; then
1903 type=a
1904 else
1905 dorsync=true
1906 type=b
1907 fi
1908 extra_info="${tmp:1}"
1909 fi
1910 if [[ $sl_test_hook ]]; then
1911 RSYNC_RSH="ssh ${args[*]}" $sl_test_hook "$extra_info" "$remote"
1912 fi
1913
1914 if $haveinfo && [[ $type == b ]]; then
1915 info_sec=${tmp::10}
1916 read files_sec _ < <(find -L $SL_FILES_DIR -printf "%T@ %p\n" | sort -nr || [[ $? == 141 || ${PIPESTATUS[0]} == 32 ]] )
1917 files_sec=${files_sec%%.*}
1918 if (( files_sec > info_sec )); then
1919 dorsync=true
1920 rm -f $sshinfo
1921 fi
1922 fi
1923
1924 sync_dirname=${SL_FILES_DIR##*/}
1925
1926 if [[ ! $SL_FILES_DIR ]]; then
1927 echo error: missing '$SL_FILES_DIR' env var >&2
1928 return 1
1929 fi
1930
1931 if $dorsync; then
1932 RSYNC_RSH="ssh ${args[*]}" m rsync -rptL --delete $sl_rsync_args $SL_FILES_DIR "$remote":
1933 fi
1934 if $dorsync || ! $haveinfo; then
1935 sshinfo=$SL_INFO_DIR/$EPOCHSECONDS$type"$remote"
1936 [[ -e $SL_INFO_DIR ]] || mkdir -p $SL_INFO_DIR
1937 printf "%s\n" "$extra_info" >$sshinfo
1938 chmod 666 $sshinfo
1939 fi
1940 if [[ $type == b ]]; then
1941 if (( ${#@} )); then
1942 # Theres a couple ways to pass arguments, im not sure whats best,
1943 # but relying on bash 4.4+ escape quoting seems most reliable.
1944 command ssh "${args[@]}" "$remote" \
1945 LC_USEBASHRC=t bash -c '.\ '$sync_dirname'/.bashrc\;"\"\$@\""' bash ${@@Q}
1946 elif [[ ! -t 0 ]]; then
1947 # This case is when commands are being piped to ssh.
1948 # Normally, no bashrc gets sourced.
1949 # But, since we are doing all this, lets source it because we can.
1950 cat <(echo . $sync_dirname/.bashrc) - | command ssh "${args[@]}" "$remote" LC_USEBASHRC=t bash
1951 else
1952 command ssh -t "${args[@]}" "$remote" LC_USEBASHRC=t INPUTRC=$sync_dirname/.inputrc bash --rcfile $sync_dirname/.bashrc
1953 fi
1954 else
1955 if [[ -t 0 ]]; then
1956 LC_USEBASHRC=t command ssh "${args[@]}" "$remote" ${@@Q}
1957 else
1958 command ssh "${args[@]}" "$remote" LC_USEBASHRC=t bash
1959 fi
1960 fi
1961 # this function inspired from https://github.com/Russell91/sshrc
1962 }
1963
1964 slr() {
1965 sl --rsync "$@"
1966 }
1967 sss() { # ssh solo
1968 sl -oControlMaster=no -oControlPath=/ "$@"
1969 }
1970 # kill off old shared socket then ssh
1971 ssk() {
1972 m ssh -O exit "$@" || [[ $? == 255 ]]
1973 m sl "$@"
1974 }
1975 ccomp ssh sl slr sss ssk
1976 # plain ssh
1977 ssh() {
1978 if [[ $TERM == alacritty || $TERM == xterm-kitty ]]; then
1979 TERM=xterm-256color LC_USEBASHRC=t command ssh "$@"
1980 else
1981 LC_USEBASHRC=t command ssh "$@"
1982 fi
1983 }
1984
1985
1986 slog() {
1987 # log with script. timing is $1.t and script is $1.s
1988 # -l to save to ~/typescripts/
1989 # -t to add a timestamp to the filenames
1990 local logdir do_stamp arg_base
1991 (( $# >= 1 )) || { echo "arguments wrong"; return 1; }
1992 logdir="/a/dt/"
1993 do_stamp=false
1994 while getopts "lt" option
1995 do
1996 case $option in
1997 l ) arg_base=$logdir ;;
1998 t ) do_stamp=true ;;
1999 esac
2000 done
2001 shift $((OPTIND - 1))
2002 arg_base+=$1
2003 [[ -e $logdir ]] || mkdir -p $logdir
2004 $do_stamp && arg_base+=$(date +%F.%T%z)
2005 script -t $arg_base.s 2> $arg_base.t
2006 }
2007 splay() { # script replay
2008 #logRoot="$HOME/typescripts/"
2009 #scriptreplay "$logRoot$1.t" "$logRoot$1.s"
2010 scriptreplay "$1.t" "$1.s"
2011 }
2012
2013 sr() {
2014 # sudo redo. be aware, this command may not work right on strange distros or earlier software
2015 if [[ $# == 0 ]]; then
2016 sudo -E bash -c -l "$(history -p '!!')"
2017 else
2018 echo this command redos last history item. no argument is accepted
2019 fi
2020 }
2021
2022 srm () {
2023 # with -ll, less secure but faster.
2024 command srm -ll "$@"
2025 }
2026
2027 srun() {
2028 scp $2 $1:/tmp
2029 ssh $1 /tmp/${2##*/} $(printf "%q\n" "${@:2}")
2030 }
2031
2032
2033 swap() {
2034 local tmp
2035 tmp=$(mktemp)
2036 mv $1 $tmp
2037 mv $2 $1
2038 mv $tmp $2
2039 }
2040
2041 tclock() { # terminal clock
2042 local x
2043 clear
2044 date +%l:%_M
2045 len=60
2046 # this goes to full width
2047 #len=${1:-$((COLUMNS -7))}
2048 x=1
2049 while true; do
2050 if (( x == len )); then
2051 end=true
2052 d="$(date +%l:%_M) "
2053 else
2054 end=false
2055 d=$(date +%l:%M:%_S)
2056 fi
2057 echo -en "\r"
2058 echo -n "$d"
2059 for ((i=0; i<x; i++)); do
2060 if (( i % 6 )); then
2061 echo -n _
2062 else
2063 echo -n .
2064 fi
2065 done
2066 if $end; then
2067 echo
2068 x=1
2069 else
2070 x=$((x+1))
2071 fi
2072 sleep 5
2073 done
2074 }
2075
2076
2077 te() {
2078 # test existence / exists
2079 local ret=0
2080 for x in "$@"; do
2081 [[ -e "$x" || -L "$x" ]] || ret=1
2082 done
2083 return $ret
2084 }
2085
2086 psoff() {
2087 # normally, i would just execute these commands in the function.
2088 # however, DEBUG is not inherited, so we need to run it outside a function.
2089 # And we want to run set -x afterwards to avoid spam, so we cram everything
2090 # in here, and then it will run after this function is done.
2091 PROMPT_COMMAND='trap DEBUG; unset PROMPT_COMMAND; PS1="\w \$ "'
2092 }
2093 pson() {
2094 PROMPT_COMMAND=prompt-command
2095 if [[ $TERM == *(screen*|xterm*|rxvt*) ]]; then
2096 trap 'settitle "$BASH_COMMAND"' DEBUG
2097 fi
2098 }
2099
2100 tx() { # toggle set -x, and the prompt so it doesnt spam
2101 if [[ $- == *x* ]]; then
2102 set +x
2103 pson
2104 else
2105 psoff
2106 fi
2107 }
2108
2109 psnetns() {
2110 # show all processes in the network namespace $1.
2111 # blank entries appear to be subprocesses/threads
2112 local x netns
2113 netns=$1
2114 ps -w | head -n 1
2115 sudo find -L /proc/[1-9]*/task/*/ns/net -samefile /run/netns/$netns | cut -d/ -f5 | \
2116 while read -r l; do
2117 x=$(ps -w --no-headers -p $l);
2118 if [[ $x ]]; then echo "$x"; else echo $l; fi;
2119 done
2120 }
2121 nonet() {
2122 if ! s ip netns list | grep -Fx nonet &>/dev/null; then
2123 s ip netns add nonet
2124 fi
2125 sudo -E env /sbin/ip netns exec nonet sudo -E -u iank /bin/bash
2126 }
2127
2128 m() { printf "%s\n" "$*"; "$@"; }
2129
2130 uptime() {
2131 if type -p uprecords &>/dev/null; then
2132 uprecords -B
2133 else
2134 command uptime
2135 fi
2136 }
2137
2138 virshrm() {
2139 for x in "$@"; do virsh destroy "$x"; virsh undefine "$x"; done
2140 }
2141
2142 vm-set-listen(){
2143 local t
2144 t=$(mktemp)
2145 local vm=$1
2146 local ip=$2
2147 sudo virsh dumpxml $vm | sed -r "s/(<listen.*address=')([^']+)/\1$ip/" | \
2148 sed -r "s/listen='[^']+/listen='$ip/"> $t
2149 sudo virsh undefine $vm
2150 sudo virsh define $t
2151 }
2152
2153
2154 vmshare() {
2155 vm-set-listen $1 0.0.0.0
2156 }
2157
2158
2159 vmunshare() {
2160 vm-set-listen $1 127.0.0.1
2161 }
2162
2163 myiwscan() {
2164 # find input, copy to pattern space, when we find the first field, print the copy in different order without newlines.
2165 # instead of using labels, we could just match a line and group, eg: /signal:/,{s/signal:(.*)/\1/h}
2166 sudo iw dev wls1 scan | sed -rn "
2167 s/^\Wcapability: (.*)/\1/;Ta;h;b
2168 :a;s/^\Wsignal: -([^.]+).*/\1/;Tb;H;b
2169 # padded to min width of 20
2170 :b;s/\WSSID: (.*)/\1 /;T;s/^(.{20}(.*[^ ])?) */\1/;H;g;s/(.*)\n(.*)\n(.*)/\2 \3 \1/gp;b
2171 "|sort -r
2172 }
2173
2174 # * misc stuff
2175
2176
2177 if $use_color && type -p tput &>/dev/null; then
2178 term_bold="$(tput bold)"
2179 term_red="$(tput setaf 1)"
2180 term_green="$(tput setaf 2)"
2181 term_yellow="$(tput setaf 3)"
2182 term_purple="$(tput setaf 5)"
2183 term_nocolor="$(tput sgr0)" # no font attributes
2184
2185 # unused so far. commented for shellcheck
2186 # term_underl="$(tput smul)"
2187 # term_blue="$(tput setaf 4)"
2188 # term_cyan="$(tput setaf 6)"
2189 fi
2190 # Try to keep environment pollution down, EPA loves us.
2191 unset safe_term match_lhs use_color
2192
2193 # * prompt
2194
2195
2196 if [[ $- == *i* ]]; then
2197
2198
2199 case $HOSTNAME in
2200 bk|je|li)
2201 if [[ $EUID == 1000 ]]; then
2202 system-status _ ||:
2203 fi
2204 ;;
2205 esac
2206
2207
2208 # this needs to come before next ps1 stuff
2209 # this stuff needs bash 4, feb 2009,
2210 # old enough to no longer condition on $BASH_VERSION anymore
2211 shopt -s autocd
2212 shopt -s dirspell
2213 PS1='\w'
2214 if [[ $- == *i* ]] && [[ ! $LC_INSIDE_EMACS ]]; then
2215 PROMPT_DIRTRIM=2
2216 bind -m vi-command B:shell-backward-word
2217 bind -m vi-command W:shell-forward-word
2218 fi
2219
2220 if [[ $SSH_CLIENT || $SUDO_USER ]]; then
2221 unset PROMPT_DIRTRIM
2222 PS1="\h:$PS1"
2223 fi
2224
2225 # emacs terminal has problems if this runs slowly,
2226 # so I've thrown a bunch of things at the wall to speed it up.
2227 prompt-command() {
2228 local return=$? # this MUST COME FIRST
2229 local ps_char ps_color
2230 unset IFS
2231
2232 if [[ $HISTFILE ]]; then
2233 history -a # save history
2234 fi
2235
2236 # assigned in brc2
2237 # shellcheck disable=SC1303
2238 if [[ $jr_pid ]]; then
2239 if [[ -e /proc/$jr_pid ]]; then
2240 kill $jr_pid
2241 fi
2242 unset jr_pid
2243 fi
2244
2245 case $return in
2246 0) ps_color="$term_purple"
2247 ps_char='\$'
2248 ;;
2249 *) ps_color="$term_green"
2250 ps_char="$return \\$"
2251 ;;
2252 esac
2253 if [[ ! -O . ]]; then # not owner
2254 if [[ -w . ]]; then # writable
2255 ps_color="$term_bold$term_red"
2256 else
2257 ps_color="$term_bold$term_green"
2258 fi
2259 fi
2260
2261 # faster than sourceing the file im guessing
2262 if [[ -e /dev/shm/iank-status && ! -e /tmp/quiet-status ]]; then
2263 eval $(< /dev/shm/iank-status)
2264 fi
2265 if [[ $MAIL_HOST && $MAIL_HOST != "$HOSTNAME" ]]; then
2266 ps_char="@ $ps_char"
2267 fi
2268 # We could test if sudo is active with sudo -nv
2269 # but then we get an email and log of lots of failed sudo commands.
2270 # We could turn those off, but seems better not to.
2271 if [[ $EUID != 0 ]] && [[ $DID_SUDO ]]; then
2272 psudo="\[$term_bold$term_red\]s\[$term_nocolor\] "
2273 fi
2274 if [[ ! $HISTFILE ]]; then
2275 ps_char="NOHIST $ps_char"
2276 fi
2277 PS1="${PS1%"${PS1#*[wW]}"} $psudo\[$ps_color\]$ps_char\[$term_nocolor\] "
2278
2279 # set titlebar. instead, using more advanced
2280 # titelbar below
2281 #echo -ne "$_title_escape $HOSTNAME ${PWD/#$HOME/~} \007"
2282 }
2283 PROMPT_COMMAND=prompt-command
2284
2285 if [[ $TERM == screen* ]]; then
2286 _title_escape="\033]..2;"
2287 else
2288 # somme sites recommend this, i dunno what the diff is.
2289 #_title_escape="\033]30;"
2290 _title_escape="\033]0;"
2291 fi
2292
2293 settitle () {
2294 # this makes it so we show the current command if
2295 # one is running, otherwise, show nothing
2296
2297 if [[ $1 == prompt-command ]]; then
2298 return 0
2299 fi
2300 if (( ${#BASH_ARGC[@]} == 1 && BASH_SUBSHELL == 0 )); then
2301 echo -ne "$_title_escape ${PWD/#$HOME/~} "
2302 printf "%s" "$*"
2303 echo -ne "\007"
2304 fi
2305 }
2306
2307 # note, this wont work:
2308 # x=$(mktemp); cp a $x
2309 # I havnt figured out why, bigger fish to fry.
2310 #
2311 # for titlebar.
2312 # condition from the screen man page i think.
2313 # note: duplicated in tx()
2314 if [[ $TERM == *(screen*|xterm*|rxvt*) ]]; then
2315 trap 'settitle "$BASH_COMMAND"' DEBUG
2316 else
2317 trap DEBUG
2318 fi
2319
2320 fi
2321
2322 # * stuff that makes sense to be at the end
2323
2324
2325 # best practice
2326 unset IFS
2327
2328 # shellcheck disable=SC1090
2329 [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
2330
2331 # I had this idea to start a bash shell which would run an initial
2332 # command passed through this env variable, then continue on
2333 # interactively. But the use case I had in mind went away.
2334 #
2335 # if [[ $MY_INIT_CMD ]]; then
2336 # "${MY_INIT_CMD[@]}"
2337 # unset MY_INIT_CMD
2338 # fi
2339
2340 # ensure no bad programs appending to this file will have an affect
2341 return 0