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