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