fix ssh issue, various minor improvements
[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 # a useful flag is -F aka --quit-if-one-screen
228 export LESS=RXij12
229 export SYSTEMD_LESS=$LESS
230
231 export NNN_COLORS=2136
232
233 export SL_FILES_DIR=/b/ds/sl/.iank
234 export SL_INFO_DIR=/p/sshinfo
235
236
237 # * include files
238
239 if [[ -s $bashrc_dir/path-add-function ]]; then
240 source $bashrc_dir/path-add-function
241 if [[ $SSH_CLIENT ]]; then
242 if grep -qF /home/iank/.iank/e/e /etc/exports &>/dev/null; then
243 export EMACSDIR=/home/iank/.iank/e/e
244 fi
245 path-add $bashrc_dir
246 fi
247 fi
248
249 # if someone exported $SOE (stop on error), catch errors.
250 #
251 # Note, on debian this results in the following warning when in ssh,
252 # hich I haven't figured out how to fix. It doesn't happen if we source
253 # after the shell has started
254 #
255 # bash: /usr/share/bashdb/bashdb-main.inc: No such file or directory
256 # bash: warning: cannot start debugger; debugging mode disabled
257 if [[ $SOE ]]; then
258 if [[ -e /a/bin/errhandle/err ]]; then
259 source /a/bin/errhandle/err
260 fi
261 fi
262
263
264
265
266 mysrc() {
267 local path dir file
268 path=$1
269 dir=${path%/*}
270 file=${path##*/}
271 if [[ -s $path ]]; then
272 source $path
273 elif [[ -s $bashrc_dir/$file ]]; then
274 source $bashrc_dir/$file
275 fi
276 }
277
278
279 mysrc /a/bin/small-misc-bash/ll-function
280 mysrc /a/bin/distro-functions/src/package-manager-abstractions
281
282 # things to remember:
283 # ALT-C - cd into the selected directory
284 # CTRL-T - Paste the selected file path into the command line
285 #
286 # good guide to some of its basic features is the readme file
287 # https://github.com/junegunn/fzf
288 if [[ -s /usr/share/doc/fzf/examples/key-bindings.bash ]]; then
289 source /usr/share/doc/fzf/examples/key-bindings.bash
290 fi
291
292 # * functions
293
294 ### begin FSF section ###
295
296 # Comments before functions are meant to be good useful
297 # documentation. If they fail at that, please improve them or send Ian a
298 # note.
299
300 ## copy bash completion
301 # Usage: ORIGINAL_COMMAND TARGET_COMMAND...
302 #
303 # It copies how the bash completion works from one command to other
304 # commands.
305 ccomp() {
306 local c src
307 src=$1
308 shift
309 if ! c=$(complete -p $src 2>/dev/null); then
310 _completion_loader $src &>/dev/null ||:
311 c=$(complete -p $src 2>/dev/null) || return 0
312 fi
313 # remove $src( .*|$)
314 c=${c% $src}
315 c=${c%% $src *}
316 eval $c $*
317 }
318
319 ## directory history tracking and navigation.
320 #
321 # cd becomes a function, also aliased to c. b to go back, f to go
322 # forward, cl to list recent directories and choose one.
323 #
324 # The finer details you may want to skip:
325 #
326 # We also define bl to print the list of back and forward directories.
327 #
328 # We keep 2 stacks, forward and back. Unlike with a web browser, the
329 # forward stack is not erased when going somewhere new.
330 #
331 # Recent directories are stored in ~/.cdirs.
332 #
333 declare -a _dir_forward _dir_back
334 c() {
335 # normally, the top of _dir_back is our current dir. if it isn't,
336 # put it on there, except we don't want to do that when we
337 # just launched a shell
338 if [[ $OLDPWD ]]; then
339 if (( ${#_dir_back[@]} == 0 )) || [[ ${_dir_back[-1]} != "$PWD" ]]; then
340 _dir_back+=("$PWD")
341 fi
342 fi
343 command cd "$@"
344 if (( ${#_dir_back[@]} == 0 )) || [[ ${_dir_back[-1]} != "$PWD" ]]; then
345 _dir_back+=("$PWD")
346 fi
347 echo "$PWD" >> ~/.cdirs
348 }
349 ccomp cd c
350
351 # back
352 b() {
353 local top_back
354 if (( ${#_dir_back[@]} == 0 )); then
355 echo "nothing left to go back to" >&2
356 return 0
357 fi
358 top_back="${_dir_back[-1]}"
359
360 if [[ $top_back == "$PWD" ]] && (( ${#_dir_back[@]} == 1 )); then
361 echo "already on last back entry" >&2
362 return 0
363 fi
364
365
366 if [[ $top_back == "$PWD" ]]; then
367 # add to dirf if not already there
368 if (( ${#_dir_forward[@]} == 0 )) || [[ ${_dir_forward[-1]} != "$top_back" ]]; then
369 _dir_forward+=("$top_back")
370 fi
371 unset "_dir_back[-1]"
372 command cd "${_dir_back[-1]}"
373 else
374 if (( ${#_dir_forward[@]} == 0 )) || [[ ${_dir_forward[-1]} != "$PWD" ]]; then
375 _dir_forward+=("$PWD")
376 fi
377 command cd "$top_back"
378 fi
379
380 # Interesting feature, not sure I want it.
381 # give us a peek at what is next in the list
382 # if (( ${#_dir_back[@]} >= 2 )); then
383 # printf "%s\n" "${_dir_back[-2]}"
384 # fi
385 #
386
387 # c/b/f Implementation notes:
388 #
389 # The top of the back is $PWD
390 # as long as the last directory change was due to c,b,or cl.
391 #
392 # Example of stack changes:
393 #
394 # a b c (d)
395 ## back
396 # a b (c)
397 # d
398 #back
399 #a (b)
400 #d c
401 #back
402 #(a)
403 #d c b
404 #forward
405 #a (b)
406 #d c
407 #
408 # a b c
409 ## back
410 # a b
411 # (c)
412 ## forward
413
414 }
415 # forward
416 f() {
417 local top_forward
418 if (( ${#_dir_forward[@]} == 0 )); then
419 echo "no forward dir left" >&2
420 return 0
421 fi
422 top_forward="${_dir_forward[-1]}"
423 unset "_dir_forward[-1]"
424 c "$top_forward"
425
426 # give us a peek at what is next in the list
427 # if (( ${#_dir_forward[@]} )); then
428 # printf "%s\n" "${_dir_forward[-1]}"
429 # fi
430 }
431 # cd list
432 cl() {
433 local i line input start
434 local -A buttondirs alines
435 local -a buttons dirs lines
436 buttons=( {a..z} {2..9} )
437 if [[ ! -s ~/.cdirs ]]; then
438 echo nothing in ~/.cdirs
439 return 0
440 fi
441
442 i=0
443
444 mapfile -t lines <~/.cdirs
445 start=$(( ${#lines[@]} - 1 ))
446
447 # we have ~33 buttons as of this writing, so lets
448 # prune down the history every once in a while.
449 if (( start > 500 )); then
450 tac ~/.cdirs | awk '!seen[$0]++' | head -n 200 | tac | sponge ~/.cdirs || [[ $? == 141 ]]
451 fi
452
453 for (( j=$start; j >= 0; j-- )); do
454 line="${lines[$j]}"
455 if [[ ! $line || ${alines[$line]} || ! -d "$line" || $line == "$PWD" || line == "$HOME" ]]; then
456 continue
457 fi
458 alines[$line]=t
459 buttondirs[${buttons[i]}]="$line"
460 printf "%s %s\n" ${buttons[i]} "$line"
461 if (( i == ${#buttons[@]} - 1 )); then
462 break
463 fi
464 i=$(( i + 1 ))
465 done
466
467 if (( i == 0 )); then
468 echo "no dirs in ~/.cdirs"
469 return 0
470 fi
471 read -r -N 1 input
472 if [[ $input != $'\n' ]]; then
473 c "${buttondirs[$input]}"
474 fi
475 }
476 # back list
477 bl() {
478 local start i j max
479 max=10
480 start=$(( ${#_dir_back[@]} - 1 ))
481
482 # cleanup possible repeating of pwd
483 if (( start >= 0 )) && [[ ${_dir_back[$start]} == "$PWD" ]]; then
484 start=$(( start - 1 ))
485 fi
486 j=1
487 if (( start >= 0 )); then
488 for (( i=$start; i >= 0 ; i-- )); do
489 printf "%s %s\n" $j ${_dir_back[i]}
490 j=$(( j + 1 ))
491 if (( j >= max )); then
492 break
493 fi
494 done
495 fi
496
497 max=10
498 start=$(( ${#_dir_forward[@]} - 1 ))
499
500 # cleanup possible repeating of pwd
501 if (( start >= 0 )) && [[ ${_dir_forward[$start]} == "$PWD" ]]; then
502 start=$(( start - 1 ))
503 fi
504 if (( start < 0 )); then
505 return 0
506 fi
507 echo --
508 j=1
509 for (( i=$start; i >= 0 ; i-- )); do
510 printf "%s %s\n" $j ${_dir_forward[i]}
511 j=$(( j + 1 ))
512 if (( j >= max )); then
513 break
514 fi
515 done
516 }
517
518 # pee do. run args as a command with output copied to syslog.
519 #
520 # Usage: pd [-t TAG] COMMAND...
521 #
522 # -t TAG Override the tag in the syslog. The default is COMMAND with
523 # any path part is removed, eg. for /bin/cat the tag is cat.
524 #
525 # You can view the log via "journalctl -t TAG"
526 pd() {
527 local tag ret
528 ret=0
529 tag=${1##*/}
530 case $1 in
531 -t) tag="$2"; shift 2 ;;
532 esac
533 echo "PWD=$PWD command: $*" | logger -t $tag
534 "$@" |& pee cat "logger -t $tag" || ret=$?
535 echo "exited with status=$ret" | pee cat "logger -t $tag"
536 # this avoids any err-catch
537 (( $ret == 0 )) || return $ret
538 }
539 ccomp time pd
540
541 # jdo = journal do. Run command as transient systemd service, tailing
542 # its output in the journal until it completes.
543 #
544 # Usage: jdo COMMAND...
545 #
546 # Compared to pd: commands recognize this is a non-interactive shell.
547 # The service is unaffected if our ssh connection dies, no need to run
548 # in screen or tmux.
549 #
550 # Note: The last few lines of any existing entries for a unit by that
551 # name will be output first, and there will be a few second delay at the
552 # start of the command, and a second or so at the end.
553 #
554 # Note: Functions and aliases obviously won't work, we resolve the
555 # command to a file.
556 #
557 # Note: requires running as root.
558 jdo() {
559 local cmd cmd_name jr_pid ret
560 ret=0
561 cmd="$1"
562 shift
563 if [[ $EUID != 0 ]]; then
564 echo "jdo: error: rerun as root"
565 return 1
566 fi
567 cmd_name=${cmd##*/}
568 if [[ $cmd != /* ]]; then
569 cmd=$(type -P "$cmd")
570 fi
571 # -q = quiet
572 journalctl -qn2 -f -u "$cmd_name" &
573 # Trial and error of time needed to avoid missing initial lines.
574 # .5 was not reliable. 1 was not reliable. 2 was not reliable
575 sleep 4
576 jr_pid=$!
577 systemd-run --unit "$cmd_name" --wait --collect "$cmd" "$@" || ret=$?
578 # The sleep lets the journal output its last line
579 # before the prompt comes up.
580 sleep .5
581 kill $jr_pid &>/dev/null ||:
582 unset jr_pid
583 fg &>/dev/null ||:
584 # this avoids any err-catch
585 (( $ret == 0 )) || return $ret
586 }
587 ccomp time jdo
588 #### end fsf section
589
590
591 ..() { c ..; }
592 ...() { c ../..; }
593 ....() { c ../../..; }
594 .....() { c ../../../..; }
595 ......() { c ../../../../..; }
596
597 chere() {
598 local f path
599 for f; do
600 path=$(readlink -e "$f")
601 echo "cat >$path <<'EOF'"
602 cat "$f"
603 echo EOF
604 done
605 }
606
607
608 # file cut copy and paste, like the text buffers :)
609 # I havnt tested these.
610 _fbufferinit() { # internal use
611 ! [[ $my_f_tempdir ]] && my_f_tempdir=$(mktemp -d)
612 rm -rf "${my_f_tempdir:?}"/*
613 }
614 fcp() { # file cp
615 _fbufferinit
616 cp "$@" "$my_f_tempdir"/
617 }
618 fct() { # file cut
619 _fbufferinit
620 mv "$@" "$my_f_tempdir"/
621 }
622 fpst() { # file paste
623 [[ $2 ]] && { echo too many arguments; return 1; }
624 target=${1:-.}
625 cp "$my_f_tempdir"/* "$target"
626 }
627
628 _khfix_common() {
629 local host ip port file key
630 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" ||: )
631 file=$(readlink -f ~/.ssh/known_hosts)
632 if [[ ! $ip ]]; then
633 echo "khfix: ssh failed"
634 return 1
635 fi
636 if [[ $port != 22 ]]; then
637 ip_entry="[$ip]:$port"
638 host_entry="[$host]:$port"
639 else
640 ip_entry=$ip
641 host_entry=$host
642 fi
643 tmpfile=$(mktemp)
644 if [[ $host != $ip ]]; then
645 key=$(ssh-keygen -F "$host_entry" -f $file | sed -r 's/^.*([^ ]+ +[^ ]+) *$/\1/')
646 if [[ $key ]]; then
647 grep -Fv "$key" "$file" | sponge "$file"
648 fi
649 fi
650 key=$(ssh-keygen -F "$ip_entry" -f $file | sed -r 's/^.*([^ ]+ +[^ ]+) *$/\1/')
651 if [[ $key ]]; then
652 grep -Fv "$key" "$file" | sponge "$file"
653 fi
654 ll ~/.ssh/known_hosts
655 rootsshsync
656 }
657 khfix() { # known hosts fix
658 _khfix_common "$@" || return 1
659 ssh $1 :
660 }
661 khcopy() {
662 _khfix_common "$@"
663 ssh-copy-id $1
664 }
665
666 a() {
667 local x
668 x=$(readlink -nf "${1:-$PWD}")
669 # yes, its kinda dumb that xclip/xsel cant do this in one invocation
670 echo -n "$x" | xclip -selection clipboard
671 echo -n "$x" | xclip
672 }
673
674 # a1 = awk {print $1}
675 for field in {1..20}; do
676 eval a$field"() { awk '{print \$$field}'; }"
677 done
678 # h1 = head -n1
679 for num in {1..9}; do
680 eval h$num"() { head -n$num; }"
681 done
682
683
684 hexipv4() {
685 printf '%d.%d.%d.%d\n' $(echo $1 | sed 's/../0x& /g')
686 }
687
688 vp9() {
689 local f out outdir in
690 outdir=vp9
691 case $1 in
692 --out)
693 outdir=$2
694 shift 2
695 ;;
696 esac
697 m mkdir -p $outdir
698 for f; do
699 out=$PWD/$outdir/$f
700 in=$PWD/$f
701 m cd $(mktemp -d)
702 pwd
703 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
704 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
705 cd -
706 done
707 }
708
709 utcl() { # utc 24 hour time to local hour 24 hour time
710 echo "print( ($1 $(date +%z | sed -r 's/..$//;s/^(-?)0*/\1/')) % 24)"|python3
711 }
712
713 bwm() {
714 s bwm-ng -T avg -d
715 }
716
717
718 # for running in a fai rescue. iank specific.
719 kdrescue() {
720 d=vgata-Samsung_SSD_850_EVO_2TB_S2RLNX0J502123D
721 for f in $d vgata-Samsung_SSD_870_QVO_8TB_S5VUNG0N900656V; do
722 cryptsetup luksOpen --key-file /p /dev/$f/root crypt-$f-root
723 cryptsetup luksOpen --key-file /p /dev/$f/o crypt-$f-o
724 done
725 mount -o subvol=root_trisquelaramo /dev/mapper/crypt-$d-root /mnt
726 mount -o subvol=a /dev/mapper/crypt-$d-root /mnt/a
727 mount -o subvol=o /dev/mapper/crypt-$d-o /mnt/o
728 mount -o subvol=boot_trisquelaramo /dev/sda2 /mnt/boot
729 cd /mnt
730 chrbind
731 }
732
733
734
735
736 c4() { c /var/log/exim4; }
737
738 caa() { git commit --amend --no-edit -a; }
739
740 cf() {
741 for f; do
742 hr
743 echo "$f"
744 hr
745 cat "$f"
746 done
747 }
748 caf() {
749 # shellcheck disable=SC2033
750 find -L "$@" -type f -not \( -name .svn -prune -o -name .git -prune \
751 -o -name .hg -prune -o -name .editor-backups -prune \
752 -o -name .undo-tree-history -prune \) \
753 -exec bash -c '. ~/.bashrc; hr; echo "$1"; hr; cat "$1"' _ {} \; 2>/dev/null
754
755 }
756 ccomp cat cf caf
757
758 calc() { echo "scale=3; $*" | bc -l; }
759 # no having to type quotes, but also no command history:
760 clc() {
761 local x
762 read -r x
763 echo "scale=3; $x" | bc -l
764 }
765
766 cam() {
767 git commit -am "$*"
768 }
769
770 ccat () { # config cat. see a config without extra lines.
771 sed -r '/^[[:space:]]*([;#]|--|\/\/|$)/d' "$@"
772 }
773 ccomp grep ccat
774
775 chrbind() {
776 local d
777 # dev/pts needed for pacman signature check
778 for d in dev proc sys dev/pts; do
779 [[ -d $d ]]
780 if ! mountpoint $d &>/dev/null; then
781 m s mount -o bind /$d $d
782 fi
783 done
784 }
785 chumount() {
786 local d
787 # dev/pts needed for pacman signature check
788 for d in dev/pts dev proc sys; do
789 [[ -d $d ]]
790 if mountpoint $d &>/dev/null; then
791 m s umount $d
792 fi
793 done
794 }
795
796
797 _cdiff-prep() {
798 # join options which are continued to multiples lines onto one line
799 local first=true
800 while IFS= read -r line; do
801 # remove leading spaces/tabs. assumes extglob
802 if [[ $line == "[ ]*" ]]; then
803 line="${line##+( )}"
804 fi
805 if $first; then
806 pastline="$line"
807 first=false
808 elif [[ $line == *=* ]]; then
809 echo "$pastline" >> "$2"
810 pastline="$line"
811 else
812 pastline="$pastline $line"
813 fi
814 done < <(grep -vE '^([ \t]*#|^[ \t]*$)' "$1")
815 echo "$pastline" >> "$2"
816 }
817
818 cdiff() {
819 # diff config files,
820 # setup for format of postfix, eg:
821 # option = stuff[,]
822 # [more stuff]
823 local pastline unified f1 f2
824 unified="$(mktemp)"
825 f1="$(mktemp)"
826 f2="$(mktemp)"
827 _cdiff-prep "$1" "$f1"
828 _cdiff-prep "$2" "$f2"
829 cat "$f1" "$f2" | grep -Po '^[^=]+=' | sort | uniq > "$unified"
830 while IFS= read -r line; do
831 # the default bright red / blue doesnt work in emacs shell
832 dwdiff -cblue,red -A best -d " ," <(grep "^$line" "$f1" || echo ) <(grep "^$line" "$f2" || echo ) | colordiff
833 done < "$unified"
834 }
835
836
837 cat-new-files() {
838 local start=$SECONDS
839 local dir="$1"
840 # shellcheck disable=SC2030
841 inotifywait -m "$dir" -e create -e moved_to | \
842 while read -r filedir _ file; do
843 cat "$filedir$file"
844 hr
845 calc $((SECONDS - start)) / 60
846 sleep 5
847 done
848
849 }
850
851 chownme() {
852 s chown -R $USER:$USER "$@"
853 }
854
855 # shellcheck disable=SC2032
856 chown() {
857 # makes it so chown -R symlink affects the symlink and its target.
858 if [[ $1 == -R ]]; then
859 shift
860 command chown -h "$@"
861 command chown -R "$@"
862 else
863 command chown "$@"
864 fi
865 }
866
867 cim() {
868 git commit -m "$*"
869 }
870
871
872 d() { builtin bg "$@"; }
873 ccomp bg d
874
875 # f would be more natural, but i already am using it for something
876 z() { builtin fg "$@"; }
877 ccomp fg z
878
879 x() { builtin kill %%; }
880
881 dc() {
882 diff --strip-trailing-cr -w "$@" # diff content
883 }
884 ccomp diff dc
885
886 despace() {
887 local x y
888 for x in "$@"; do
889 y="${x// /_}"
890 safe_rename "$x" "$y"
891 done
892 }
893
894 # df progress
895 # usage: dfp MOUNTPOINT [SECOND_INTERVAL]
896 # SECOND_INTERVAL defaults to 90
897 dfp() {
898 # mp = mountpoint
899 local a b mp interval
900 mp=$1
901 interval=${2:-90}
902 if [[ ! $mp ]]; then
903 echo "dfp: error, missing 1st arg" >&2
904 return 1
905 fi
906 while true; do
907 a=$(df --output=used $mp | tail -n1)
908 sleep $interval
909 b=$(df --output=used $mp | tail -n1)
910 printf "used mib: %'d mib/min: %s\n" $(( b /1000 )) $(( (b-a) / (interval * 1000 / 60 ) ))
911 done
912 }
913
914 # get ipv4 ip from HOST. or if it is already a number, return that
915 hostip() {
916 local host="$1"
917 case $host in
918 [0-9:])
919 echo "$host"
920 ;;
921 *)
922 getent ahostsv4 "$host" | awk '{ print $1 }' | head -n1
923 ;;
924 esac
925 }
926
927 dig() {
928 command dig +nostats +nocmd "$@"
929 }
930 # Output with sections sorted, and removal of query id, so 2 dig outputs can be diffed.
931 digsort() {
932 local sec
933 sec=
934 dig +nordflag "$@" | sed -r 's/^(;; ->>HEADER<<-.*), id: .*/\1/' | while read -r l; do
935 if [[ $l == [^\;]* ]]; then
936 sec+="$l"$'\n'
937 else
938 if [[ $sec ]]; then
939 printf "%s" "$sec" | sort
940 sec=
941 fi
942 printf "%s\n" "$l"
943 fi
944 done
945 }
946 ccomp dig digsort
947 # compare digs to the 2 servers
948 # usage: digdiff @server1 @server2 DIG_ARGS
949 # note: only the soa master nameserver will respond with
950 # ra "recursive answer" flag. That difference is meaningless afaik.
951 digdiff() {
952 local s1 s2
953 s1=$1
954 shift
955 s2=$1
956 shift
957 digsort $s1 "$@" | tee /tmp/digdiff
958 diff -u /tmp/digdiff <(digsort $s2 "$@")
959 }
960
961 dt() {
962 date "+%A, %B %d, %r" "$@"
963 }
964 dtr() {
965 date -R "$@"
966 }
967 ccomp date dt dtr
968
969 dus() { # du, sorted, default arg of
970 du -sh ${@:-*} | sort -h
971 }
972 ccomp du dus
973
974
975 e() { printf "%s\n" "$*"; }
976
977 # echo args
978 ea() {
979 if (( ! $# )); then
980 echo no args
981 fi
982 for arg; do
983 printf "%qEOL\n" "${arg}"
984 printf "%s" "${arg}" |& hexdump -C
985 done
986 }
987
988 # echo variables. print var including escapes, etc, like xxd for variable
989 ev() {
990 if (( ! $# )); then
991 echo no args
992 fi
993 for arg; do
994 if [[ -v $arg ]]; then
995 printf "%qEOL\n" "${!arg}"
996 printf "%s" "${!arg}" |& hexdump -C
997 else
998 echo arg $arg is unset
999 fi
1000 done
1001 }
1002
1003 ediff() {
1004 [[ ${#@} == 2 ]] || { echo "error: ediff requires 2 arguments"; return 1; }
1005 emacs --eval "(ediff-files \"$1\" \"$2\")"
1006 }
1007
1008 # mail related
1009 etail() {
1010 ngset
1011 tail -F /var/log/exim4/mainlog /var/log/exim4/*main /var/log/exim4/paniclog /var/log/exim4/*panic -n 200 "$@"
1012 ngreset
1013 }
1014 etailm() {
1015 tail -F /var/log/exim4/mainlog -n 200 "$@"
1016 }
1017 etail2() {
1018 tail -F /var/log/exim4/mymain -n 200 "$@"
1019 }
1020 ccomp tail etail etail2
1021
1022
1023 showkeys() {
1024 ssh "$@" cat .ssh/authorized_keys{,2}
1025 }
1026
1027
1028 # print exim old pids
1029 eoldpids() {
1030 local configtime pid piduptime now daemonpid
1031 printf -v now '%(%s)T' -1
1032 configtime=$(stat -c%Y /var/lib/exim4/config.autogenerated)
1033 if [[ -s /run/exim4/exim.pid ]]; then
1034 daemonpid=$(cat /run/exim4/exim.pid)
1035 fi
1036 for pid in $(pgrep -f '^/usr/sbin/exim4( |$)'); do
1037 # the daemonpid gets reexeced on HUP (service reloads), keeping its same old timestamp
1038 if [[ $pid == $daemonpid ]]; then
1039 continue
1040 fi
1041 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
1042 if (( configtime > now - piduptime )); then
1043 echo $pid
1044 fi
1045 done
1046 }
1047
1048 # exim tail but only watch lines from new pids
1049 etailnew() {
1050 local pid oldpids
1051 for pid in $(eoldpids); do
1052 oldpids+="$pid|"
1053 done
1054 if [[ $oldpids ]]; then
1055 etail | awk '$3 !~ /^\[('"${oldpids%|}"')\]$/'
1056 else
1057 etail
1058 fi
1059 }
1060 # exim watch as old pids go away
1061 ewatchold() {
1062 local configtime pid piduptime now
1063 local -i count
1064 local -a oldpids
1065 count=0
1066 while true; do
1067 oldpids=($(eoldpids))
1068 if (( ! ${#oldpids[@]} )); then
1069 return
1070 fi
1071 # print the date every 20 iterations
1072 if (( ! count % 20 )); then
1073 date
1074 fi
1075 count+=1
1076 ps -f -p "${oldpids[*]}"
1077 sleep 1
1078 done
1079 }
1080
1081 eless() {
1082 less /var/log/exim4/mainlog
1083 }
1084 ccomp less eless
1085 eqcat() {
1086 exiqgrep -ir.\* -o 60 | while read -r i; do
1087 hlm exim -Mvc $i
1088 echo
1089 hlm exigrep $i /var/log/exim4/mainlog | cat ||:
1090 done
1091 }
1092 eqrmf() {
1093 # other ways to get the list of message ids:
1094 # exim -bp | awk 'NF == 4 {print $3}'
1095 # # this is slower 160ms, vs 60.
1096 # exipick -i
1097 exiqgrep -ir.\* | xargs exim -Mrm
1098 }
1099
1100 econfdevnew() {
1101 rm -rf /tmp/edev
1102 mkdir -p /tmp/edev/etc
1103 cp -ra /etc/exim4 /tmp/edev/etc
1104 cp -ra /etc/alias* /tmp/edev/etc
1105 find /tmp/edev/etc/exim4 -type f -execdir sed -i "s,/etc/,/tmp/edev/etc/,g" '{}' +
1106 econfdev
1107 }
1108 econfdev() {
1109 update-exim4.conf -d /tmp/edev/etc/exim4 -o /tmp/edev/e.conf
1110 }
1111
1112 # exim grep in
1113 # show important information about incoming mail in the exim log
1114 egrin() {
1115 sed -rn '/testignore|jtuttle|eximbackup/!s/^[^ ]+ ([^ ]+) [^ ]+ [^ ]+ <= ([^ ]+).*T="(.*)" from (<[^ ]+> .*$)/\1 \4\n \3/p' <${1:-/var/log/exim4/mainlog}
1116 }
1117
1118 # 2nd line is message-id:
1119 egrinid() {
1120 sed -rn '/testignore|jtuttle|eximbackup/!s/^[^ ]+ ([^ ]+) [^ ]+ [^ ]+ <= ([^ ]+).* id=([^ ]+) T="(.*)" from (<[^ ]+> .*$)/\1 \5\n \3\n \4/p' <${1:-/var/log/exim4/mainlog}
1121 }
1122
1123
1124
1125
1126 fa() {
1127 # find array. make an array of file names found by find into $x
1128 # argument: find arguments
1129 # return: find results in an array $x
1130 while read -rd ''; do
1131 x+=("$REPLY");
1132 done < <(find "$@" -print0);
1133 }
1134
1135 faf() { # find all files. use -L to follow symlinks
1136 find "$@" -not \( -name .svn -prune -o -name .git -prune \
1137 -o -name .hg -prune -o -name .editor-backups -prune \
1138 -o -name .undo-tree-history -prune \) -type f 2>/dev/null
1139 }
1140
1141 # usage ffconcat FILES_TO_CONCAT OUTPUT_FILE
1142 ffconcat() {
1143 local tmpf
1144 tmpf=$(mktemp)
1145 printf "file '%s'\n" "$1" >$tmpf
1146 while (( $# > 1 )); do
1147 shift
1148 printf "file '%s'\n" "$1" >>$tmpf
1149 done
1150 # https://trac.ffmpeg.org/wiki/Concatenate
1151 ffmpeg -f concat -safe 0 -i $tmpf -c copy "$1"
1152 rm $tmpf
1153 }
1154
1155 # full path without resolving symlinks
1156 fp() {
1157 local dir base
1158 base="${1##*/}"
1159 dir="${1%$base}"
1160 printf "%s/%s\n" $(cd $dir; pwd) "$base"
1161 }
1162
1163
1164 # mail related
1165 frozen() {
1166 rm -rf /tmp/frozen
1167 sudo mailq |gr frozen|awk '{print $3}' | while read -r id; do
1168 sudo exim -Mvl $id
1169 echo
1170 sudo exim -Mvh $id
1171 echo
1172 sudo exim -Mvb $id
1173 echo -e '\n\n##############################\n'
1174 done | tee -a /tmp/frozen
1175 }
1176 frozenrm() {
1177 local ids=()
1178 while read -r line; do
1179 printf '%s\n' "$line"
1180 ids+=($(printf '%s\n' "$line" |gr frozen|awk '{print $3}'))
1181 done < <(s mailq)
1182 echo "sleeping for 2 in case you change your mind"
1183 sleep 2
1184 sudo exim -Mrm "${ids[@]}"
1185 }
1186
1187 funce() {
1188 # like -e for functions. returns on error.
1189 # at the end of the function, disable with:
1190 # trap ERR
1191 trap 'echo "${BASH_COMMAND:+BASH_COMMAND=\"$BASH_COMMAND\" }
1192 ${FUNCNAME:+FUNCNAME=\"$FUNCNAME\" }${LINENO:+LINENO=\"$LINENO\" }\$?=$?"
1193 trap ERR
1194 return' ERR
1195 }
1196
1197 getdir () {
1198 local help="Usage: getdir [--help] PATH
1199 Output the directory of PATH, or just PATH if it is a directory."
1200 if [[ $1 == --help ]]; then
1201 echo "$help"
1202 return 0
1203 fi
1204 if [[ $# -ne 1 ]]; then
1205 echo "getdir error: expected 1 argument, got $#"
1206 return 1
1207 fi
1208 if [[ -d $1 ]]; then
1209 echo "$1"
1210 else
1211 local dir
1212 dir="$(dirname "$1")"
1213 if [[ -d $dir ]]; then
1214 echo "$dir"
1215 else
1216 echo "getdir error: directory does not exist"
1217 return 1
1218 fi
1219 fi
1220 }
1221
1222 git_empty_branch() { # start an empty git branch. carefull, it deletes untracked files.
1223 [[ $# == 1 ]] || { echo 'need a branch name!'; return 1;}
1224 local root
1225 root=$(gitroot) || return 1 # function to set gitroot
1226 builtin cd "$root"
1227 git symbolic-ref HEAD refs/heads/$1
1228 rm .git/index
1229 git clean -fdx
1230 }
1231
1232 # shellcheck disable=SC2120
1233 gitroot() {
1234 local help="Usage: gitroot [--help]
1235 Print the full path to the root of the current git repo
1236
1237 Handles being within a .git directory, unlike git rev-parse --show-toplevel,
1238 and works in older versions of git which did not have that."
1239 if [[ $1 == --help ]]; then
1240 echo "$help"
1241 return
1242 fi
1243 local p
1244 p=$(git rev-parse --git-dir) || { echo "error: not in a git repo" ; return 1; }
1245 [[ $p != /* ]] && p=$PWD
1246 echo "${p%%/.git}"
1247 }
1248
1249 g() {
1250
1251 # todo: patch emacs so it will look elsewhere. this is kinda sad:
1252 # https://emacs.stackexchange.com/questions/4253/how-to-start-emacs-with-a-custom-user-emacs-directory
1253
1254 local args gdb=false
1255
1256 if [[ $EMACSDIR ]]; then
1257 path-add "$EMACSDIR/lib-src" "$EMACSDIR/src"
1258 fi
1259
1260 if [[ $DISPLAY ]]; then
1261 args=-n
1262 fi
1263
1264 if (( $# == 0 )); then
1265 args+=" -c"
1266 fi
1267 # duplicate -c, but oh well
1268 if ! pgrep -u $EUID emacsclient; then
1269 if (( $# == 0 )) && type -p gdb &>/dev/null; then
1270 gdb=true
1271 else
1272 args+=" -c"
1273 fi
1274 fi
1275 if [[ $EMACSDIR ]]; then
1276 # Alter the path here, otherwise the nfs mount gets triggered on the
1277 # first path lookup when emacs is not being used.
1278 PATH="$EMACSDIR/lib-src:$EMACSDIR/src:$PATH" EHOME=$HOME HOME=$EMACSDIR m emacsclient -a "" $args "$@"
1279 else
1280 if $gdb; then
1281 # due to a bug, we cant debug from the start unless we get a new gdb
1282 # https://sourceware.org/bugzilla/show_bug.cgi?id=24454
1283 # m gdb -ex="set follow-fork-mode child" -ex=r -ex=quit --args emacs --daemon
1284 m emacsclient -a "" $args "$@"
1285 sleep 1
1286 cd /a/opt/emacs-$(distro-name)$(distro-num)
1287 s gdb -p $(pgrep -f 'emacs --daemon') -ex c
1288 cd -
1289 else
1290 m emacsclient -a "" $args "$@"
1291 fi
1292 fi
1293 }
1294
1295 # force terminal version
1296 gn() {
1297 g -n "$@"
1298 }
1299
1300 gmacs() {
1301 # quit will prompt if the program crashes.
1302 gdb -ex=r -ex=quit --args emacs "$@"; r;
1303 }
1304
1305 gdkill() {
1306 # kill the emacs daemon
1307 pk1 emacs --daemon
1308 }
1309
1310 gr() {
1311 grep -iIP --color=auto "$@" || return $?
1312 }
1313 grr() { # grep recursive
1314 # Don't return 1 on nonmatch because this is meant to be
1315 # interactive, not in a conditional.
1316 if [[ ${#@} == 1 ]]; then
1317 grep --exclude-dir='*.emacs.d' --exclude-dir='*.git' -riIP --color=auto "$@" . || [[ $? == 1 ]]
1318 else
1319 grep --exclude-dir='*.emacs.d' --exclude-dir='*.git' -riIP --color=auto "$@" || [[ $? == 1 ]]
1320 fi
1321 }
1322 ccomp grep gr grr
1323
1324 rg() { grr "$@"; }
1325 ccomp grep rg
1326
1327 hr() { # horizontal row. used to break up output
1328 printf "$(tput setaf 5 2>/dev/null ||:)█$(tput sgr0 2>/dev/null||:)%.0s" $(eval echo "{1..${COLUMNS:-60}}")
1329 echo
1330 }
1331 # highlight
1332 hl() {
1333 local col input_len=0
1334 for arg; do
1335 input_len=$((input_len + 1 + ${#arg}))
1336 done
1337 col=$((60 - input_len))
1338 printf "\e[1;97;41m%s" "$*"
1339 if (( col > 0 )); then
1340 printf "\e[1;97;41m \e[0m%.0s" $(eval echo "{1..${col}}")
1341 fi
1342 echo
1343 }
1344 hlm() { hl "$*"; "$@"; }
1345
1346 hrcat() { local f; for f; do [[ -f $f ]] || continue; hr; echo "$f"; cat "$f"; done }
1347
1348
1349 # get latest hub and run it
1350 # main command to use:
1351 # hub pull-request --no-edit
1352 # --no-edit means to use the first commit\'s message as the pull request message.
1353 # If that fails, try doing
1354 # hub pull-request --no-edit -b UPSTREAM_OWNER:branch
1355 # where branch is usually master. it does the pr against your current branch.
1356 #
1357 # On first use, you input username/pass and it gets an oath token so you dont have to repeat
1358 # it\'s at ~/.config/hub
1359 hub() {
1360 local up uptar updir p v
1361 # example https://github.com/github/hub/releases/download/v2.14.2/hub-linux-amd64-2.14.2.tgz
1362 up=$(wget -q -O- https://api.github.com/repos/github/hub/releases/latest | jq -r .assets[].browser_download_url | grep linux-amd64)
1363 re='[[:space:]]'
1364 if [[ ! $up || $up == $re ]]; then
1365 echo "failed to get good update url. got: $up"
1366 fi
1367 uptar=${up##*/}
1368 updir=${uptar%.tgz}
1369 if [[ ! -e /a/opt/$updir ]]; then
1370 rm -rf /a/opt/hub-linux-amd64*
1371 wget -P /a/opt $up
1372 tar -C /a/opt -zxf /a/opt/$uptar
1373 rm -f /a/opt/$uptar
1374 fi
1375 if ! which hub &>/dev/null; then
1376 sudo /a/opt/$updir/install
1377 fi
1378
1379 # save token across computers
1380 if [[ ! -L ~/.config/hub ]]; then
1381 if [[ -e ~/.config/hub ]]; then
1382 mv ~/.config/hub /p/c/subdir_files/.config/
1383 fi
1384 if [[ -e /p/c/subdir_files/.config/hub ]]; then
1385 conflink
1386 fi
1387 fi
1388 command hub "$@"
1389 }
1390
1391 i() { git "$@"; }
1392 ccomp git i
1393
1394 # git status:
1395 # cvs -qn update
1396
1397 # git checkout FILE
1398 # cvs update -C FILE
1399
1400 # git pull
1401 # cvs up[date]
1402
1403 # potentially useful command translation
1404 # https://fling.seas.upenn.edu/~giesen/dynamic/wordpress/equivalent-commands-for-git-svn-and-cvs/
1405
1406 # importing cvs repo into git using git-cvs package:
1407 # /f/www $ /usr/lib/git-core/git-cvsimport -C /f/www-git
1408
1409 ic() {
1410 # fast commit all
1411 git commit -am "$*"
1412 }
1413
1414 ipp() {
1415 git pull
1416 git push
1417 }
1418
1419
1420 ifn() {
1421 # insensitive find
1422 # -L = follow symlinks
1423 find -L . -not \( -name .svn -prune -o -name .git -prune \
1424 -o -name .hg -prune -o -name .editor-backups -prune \
1425 -o -name .undo-tree-history -prune \) -iname "*$**" 2>/dev/null
1426 }
1427
1428 ifd() {
1429 # insensitive find directory
1430 find -L . -type d -not \( -name .svn -prune -o -name .git -prune \
1431 -o -name .hg -prune -o -name .editor-backups -prune \
1432 -o -name .undo-tree-history -prune \) -iname "*$**" 2>/dev/null
1433 }
1434
1435
1436 ipdrop() {
1437 sudo iptables -A INPUT -s $1 -j DROP
1438 }
1439
1440
1441 istext() {
1442 grep -Il "" "$@" &>/dev/null
1443 }
1444
1445 pst() {
1446 pstree -apnA
1447 }
1448
1449 jtail() {
1450 journalctl -n 10000 -f "$@"
1451 }
1452 jr() { journalctl "$@" ; }
1453 jrf() { journalctl -f "$@" ; }
1454 jru() {
1455 journalctl -u exim4 _SYSTEMD_INVOCATION_ID=$(systemctl show -p InvocationID --value $1)
1456 }
1457
1458
1459
1460 l() {
1461 if [[ $PWD == /[iap] ]]; then
1462 command ls -A --color=auto -I lost+found "$@"
1463 else
1464 command ls -A --color=auto "$@"
1465 fi
1466 }
1467
1468 lcn() { locate -i "*$**"; }
1469
1470 lg() { LC_COLLATE=C.UTF-8 ll --group-directories-first "$@"; }
1471
1472 lt() { ll -tr "$@"; }
1473
1474 lld() { ll -d "$@"; }
1475
1476 ccomp ls l lg lt lld ll
1477
1478 # low recursively
1479 lowr() {
1480 local f dirs i a
1481 local -a all
1482 for dirs in false true; do
1483 for f; do
1484 if [[ -d $f ]]; then
1485 all=("$f"/**)
1486 # reverse the order to rename the nested dirs first.
1487 # note: 0 element is the dir itself
1488 for ((i=${#all[@]}-1; i>=1; i--)); do
1489 a="${all[i]}"
1490 if $dirs && [[ -d $a ]]; then
1491 # e dirs low "$a" # debug
1492 low "$a"
1493 elif ! $dirs && [[ ! -d $a && -e $a ]]; then
1494 # debug
1495 # e not dirs low "$a" # debug
1496 low "$a"
1497 fi
1498 done
1499 fi
1500 # just rename all the top level args on the second pass
1501 if $dirs; then
1502 # e final dirs low "$f" # debug
1503 low "$f"
1504 fi
1505 done
1506 done
1507 }
1508
1509 low() { # make filenames lowercase, remove bad chars
1510 local arg new dir f
1511 for arg; do
1512 arg="${arg%%+(/)}" # remove trailing slashes. assumes we have extglob on.
1513 dir="${arg%/*}"
1514 if (( ${#dir} == ${#arg} )); then
1515 dir=.
1516 fi
1517 f="${arg##*/}"
1518 new="${f,,}" # downcase
1519 new="${new//[^a-zA-Z0-9._-]/_}" # sub bad chars
1520 new="${new#"${new%%[[:alnum:]]*}"}" # remove leading/trailing non-alnum
1521 new="${new%"${new##*[[:alnum:]]}"}"
1522 # remove bad underscores, like __ and _._
1523 new=$(echo $new | sed -r 's/__+/_/g;s/_+([.-])|([.-])_+/\1/g')
1524 safe_rename "$dir/$f" "$dir/$new" || return 1
1525 done
1526 return 0
1527 }
1528
1529 lower() { # make first letter of filenames lowercase.
1530 local x
1531 for x in "$@"; do
1532 if [[ ${x::1} == [A-Z] ]]; then
1533 y=$(tr '[:upper:]' '[:lower:]' <<<"${x::1}")"${x:1}"
1534 safe_rename "$x" "$y" || return 1
1535 fi
1536 done
1537 }
1538
1539
1540 k() { # history search
1541 grep -iP --binary-files=text "$@" ${HISTFILE:-~/.bash_history} | tail -n 80 || [[ $? == 1 ]];
1542 }
1543 ks() { # history search with context
1544 # args are an extended regex used by sed
1545 history | sed -nr "h;s/^\s*(\S+\s+){4}//;/$*/{g;p}" | tail -n 80 || [[ $? == 1 ]];
1546 }
1547 ksu() { # history search unique
1548 grep -P --binary-files=text "$@" ${HISTFILE:-~/.bash_history} | uniq || [[ $? == 1 ]];
1549 }
1550
1551 # todo: id like to do maybe a daily or hourly cronjob to
1552 # check that my history file size is increasing. Ive had it
1553 # inexplicably truncated in the past.
1554 histrm() {
1555 history -n
1556 HISTTIMEFORMAT= history | awk -v IGNORECASE=1 '{ a=$1; sub(/^ *[^ ]+ */, "") }; /'"$*"'/'
1557 read -p "press anything but contrl-c to delete"
1558 for entry in $(HISTTIMEFORMAT= history | awk -v IGNORECASE=1 '{ a=$1; sub(/^ *[^ ]+ */, "") }; /'"$*"'/ { print a }' | tac); do
1559 history -d $entry
1560 done
1561 history -w
1562 }
1563
1564 ccomp grep k ks ksu histrm
1565
1566
1567 make-targets() {
1568 # show make targets, via http://stackoverflow.com/questions/3063507/list-goals-targets-in-gnu-make
1569 make -qp | awk -F':' '/^[a-zA-Z0-9][^$#\/\t=]*:([^=]|$)/ {split($1,A,/ /);for(i in A)print A[i]}'
1570 }
1571
1572 mkc() {
1573 mkdir "$1"
1574 c "$1"
1575 }
1576 ccomp mkdir mkc
1577
1578 mkct() {
1579 mkc $(mktemp -d)
1580 }
1581
1582 mkt() { # mkdir and touch file
1583 local path="$1"
1584 mkdir -p "$(dirname "$path")"
1585 touch "$path"
1586 }
1587
1588 # shellcheck disable=SC2032
1589 mkdir() { command mkdir -p "$@"; }
1590
1591 nags() {
1592 # https://github.com/HenriWahl/Nagstamon/issues/357
1593 if ! pgrep -f /usr/lib/notification-daemon/notification-daemon >/dev/null; then
1594 /usr/lib/notification-daemon/notification-daemon &
1595 fi
1596 /usr/bin/nagstamon &
1597 }
1598
1599 nmt() {
1600 # cant use s because sudo -i doesnt work for passwordless sudo command
1601 case $EUID in
1602 0)
1603 sudo nmtui-connect "$@"
1604 ;;
1605 *)
1606 nmtui-connect "$@"
1607 ;;
1608 esac
1609 }
1610
1611
1612 ngset() {
1613 if shopt nullglob >/dev/null; then
1614 ngreset=false
1615 else
1616 shopt -s nullglob
1617 ngreset=true
1618 fi
1619 }
1620 ngreset() {
1621 if $ngreset; then
1622 shopt -u nullglob
1623 fi
1624 }
1625
1626 nopanic() {
1627 # shellcheck disable=SC2024
1628 ngset
1629 for f in /var/log/exim4/paniclog /var/log/exim4/*panic; do
1630 base=${f##*/}
1631 if [[ -s $f ]]; then
1632 echo ================== $f =============
1633 s tee -a /var/log/exim4/$base-archive <$f
1634 s truncate -s0 $f
1635 fi
1636 done
1637 ngreset
1638 }
1639
1640
1641 ping() { command ping -O "$@"; }
1642 p8() { ping "$@" 8.8.8.8; }
1643 p6() { ping6 "$@" 2001:4860:4860::8888; }
1644
1645 pkx() { # package extract
1646 local pkg cached tmp f
1647 c $(mktemp -d)
1648 pkg=$1
1649 # shellcheck disable=SC2012
1650 cached=$(ls -t /var/cache/apt/archives/$pkg* | tail -n1 2>/dev/null) ||:
1651 if [[ $cached ]]; then
1652 cp $cached .
1653 else
1654 aptitude download $pkg || return 1
1655 fi
1656 tmp=(*); f=${tmp[0]} # only 1 expected
1657 ex $f
1658 rm -f $f
1659 }
1660
1661 # pgrep and kill
1662 pk1() {
1663 local pid
1664 pid=($(pgrep -f "$*"))
1665 case ${#pid[@]} in
1666 1)
1667 # shellcheck disable=SC2128
1668 {
1669 ps -F $pid
1670 m kill $pid
1671 }
1672 ;;
1673 0) echo "no pid found" ;;
1674 *)
1675 ps -F ${pid[@]}
1676 ;;
1677 esac
1678 }
1679
1680 psg () {
1681 local x y help
1682 help="Usage: psg [--help] GREP_ARGS
1683 grep ps and output in a nice format"
1684 if [[ $1 == --help ]]; then
1685 echo "$help"
1686 return
1687 fi
1688 x=$(ps -eF)
1689 # final grep is because some commands tend to have a lot of trailing spaces
1690 y=$(echo "$x" | grep -iP "$@" | grep -o '.*[^ ]') ||:
1691 if [[ $y ]]; then
1692 echo "$x" | head -n 1 || [[ $? == 141 ]]
1693 echo "$y"
1694 fi
1695 }
1696
1697 pubip() { curl -4s https://icanhazip.com; }
1698 pubip6() { curl -6s https://icanhazip.com; }
1699 whatismyip() { pubip; }
1700
1701
1702 q() { # start / launch a program in the backround and redir output to null
1703 "$@" &> /dev/null &
1704 }
1705
1706 # shellcheck disable=SC2120
1707 r() {
1708 if [[ $HISTFILE ]]; then
1709 history -a # save history
1710 fi
1711 trap ERR # this avoids a segfault
1712 exit ${1:0}
1713 # i had this redir, not sure why
1714 # exit "$@" 2>/dev/null
1715 }
1716
1717 # scp is insecure and deprecated.
1718 scp() {
1719 rsync --inplace "$@"
1720 }
1721 ccomp rsync scp
1722
1723 randport() {
1724 # available high ports are 1024-65535,
1725 # but lets skip things that are more likely to be in use
1726 python3 <<'EOF'
1727 import secrets
1728 print(secrets.SystemRandom().randrange(10002,65500))
1729 EOF
1730 }
1731
1732 # reapply bashrc
1733 reb() {
1734 source ~/.bashrc
1735 }
1736
1737 rl() {
1738 readlink -f "$@"
1739 }
1740 ccomp readlink rl
1741
1742 rsd() {
1743 # rsync, root is required to keep permissions right.
1744 # rsync --archive --human-readable --verbose --itemize-changes --checksum \(-ahvic\) \
1745 # --no-times --delete
1746 # basically, make an exact copy, use checksums instead of file times to be more accurate
1747 rsync -ahvic --delete "$@"
1748 }
1749 rsa() {
1750 # like rlu, but dont delete files on the target end which
1751 # do not exist on the original end.
1752 rsync -ahvic "$@"
1753 }
1754 rst() {
1755 # rl without preserving modification time.
1756 rsync -ahvic --delete --no-t "$@"
1757 }
1758 # [RSYNC_OPTS] HOST PATH
1759 rsu() {
1760 # eg. rsu -opts frodo /testpath
1761 # relative paths will expanded with readlink -f.
1762 opts=("${@:1:$#-2}") # 1 to last -2
1763 path="${*:$#}" # last
1764 host="${*:$#-1:1}" # last -1
1765 if [[ $path == .* ]]; then
1766 path=$(readlink -f $path)
1767 fi
1768 m rsync -ahvi --relative --no-implied-dirs "${opts[@]}" "$path" "root@$host:/";
1769 }
1770 ccomp rsync rsd rsa rst rsu
1771
1772 # find programs listening on a port
1773 ssp() {
1774 local port=$1
1775 # to figure out these args, i had to look at the man page from git version, as of 2022-04.
1776 s ss -lpn state listening sport = $port
1777 }
1778
1779 resolvcat() {
1780 local f
1781 if [[ $(systemctl is-active nscd ||:) != inactive ]]; then
1782 m s nscd -i hosts
1783 fi
1784 f=/etc/resolv.conf
1785 echo $f:; ccat $f
1786 hr; s ss -lpn sport = 53
1787 if systemctl is-enabled dnsmasq &>/dev/null || [[ $(systemctl is-active dnsmasq ||:) != inactive ]]; then
1788 # this will fail is dnsmasq is failed
1789 hr; m ser status dnsmasq | cat || :
1790 f=/etc/dnsmasq.conf
1791 hr; echo $f:; ccat $f
1792 hr; m grr '^ *(servers-file|server) *=|^ *no-resolv *$' /etc/dnsmasq.conf /etc/dnsmasq.d
1793 f=/etc/dnsmasq-servers.conf
1794 hr; echo $f:; ccat $f
1795 fi
1796 hr
1797 echo /etc/nsswitch.conf:
1798 grep '^ *hosts:' /etc/nsswitch.conf
1799 if systemctl is-enabled systemd-resolved &>/dev/null || [[ $(systemctl is-active systemd-resolved ||:) != inactive ]]; then
1800 hr; m ser status systemd-resolved | cat || :
1801 hr; m resolvectl status | cat
1802 fi
1803
1804 }
1805 rcat() {
1806 resolvcat | less
1807 }
1808 reresolv() {
1809 if [[ $(systemctl is-active nscd ||:) != inactive ]]; then
1810 m ser stop nscd
1811 sleep .5
1812 m ser start nscd
1813 m sudo nscd -i hosts
1814 fi
1815 if [[ $(systemctl is-active dnsmasq ||:) != inactive ]]; then
1816 m sudo systemctl restart dnsmasq
1817 fi
1818 if [[ $(systemctl is-active systemd-resolved ||:) != inactive ]]; then
1819 m sudo systemctl restart systemd-resolved
1820 fi
1821 if type -P resolvectl &>/dev/null; then
1822 resolvectl flush-caches
1823 fi
1824 }
1825
1826 rmstrips() {
1827 ssh fencepost head -n 300 /gd/gnuorg/EventAndTravelInfo/rms-current-trips.txt | less
1828 }
1829
1830 urun () {
1831 umask $1
1832 shift
1833 "$@"
1834 }
1835 sudo () {
1836 command sudo "$@" || return $?
1837 DID_SUDO=true
1838 }
1839 s() {
1840 # background
1841 # I use a function because otherwise we cant use in a script,
1842 # cant assign to variable.
1843 #
1844 # note: gksudo is recommended for X apps because it does not set the
1845 # home directory to the same, and thus apps writing to ~ fuck things up
1846 # with root owned files.
1847 #
1848 if [[ $EUID != 0 || $1 == -* ]]; then
1849 # shellcheck disable=SC2034
1850 SUDOD="$PWD" command sudo -i "$@"
1851 DID_SUDO=true
1852 else
1853 "$@"
1854 fi
1855 }
1856 sb() { # sudo bash -c
1857 # use sb instead of s is for sudo redirections,
1858 # eg. sb 'echo "ok fine" > /etc/file'
1859 # shellcheck disable=SC2034
1860 local SUDOD="$PWD"
1861 sudo -i bash -c "$@"
1862 }
1863 # secret sudo
1864 se() { s urun 0077 "$@"; }
1865 ccomp sudo s sb se
1866
1867 safe_rename() { # warn and dont rename if file exists.
1868 # mv -n exists, but it\'s silent
1869 if [[ $# != 2 ]]; then
1870 echo safe_rename error: $# args, need 2 >2
1871 return 1
1872 fi
1873 if [[ $1 != "$2" ]]; then # yes, we want to silently ignore this
1874 if [[ -e $2 || -L $2 ]]; then
1875 echo "Cannot rename $1 to $2 as it already exists."
1876 else
1877 mv -vi "$1" "$2"
1878 fi
1879 fi
1880 }
1881
1882
1883 sd() {
1884 sudo dd status=none of="$1"
1885 }
1886
1887 ser() {
1888 if type -p systemctl &>/dev/null; then
1889 s systemctl "$@"
1890 else
1891 if (( $# >= 3 )); then
1892 echo iank: ser expected 2 or less arguments
1893 return 1
1894 fi
1895 s service $2 $1
1896 fi
1897 }
1898 serstat() {
1899 systemctl -n 40 status "$@"
1900 }
1901
1902 seru() { systemctl --user "$@"; }
1903 # like restart, but do nothing if its not already started
1904 srestart() {
1905 local service=$1
1906 if [[ $(s systemctl --no-pager show -p ActiveState $service ) == ActiveState=active ]]; then
1907 systemctl restart $service
1908 fi
1909 }
1910
1911 setini() { # set a value in a .ini style file
1912 key="$1" value="$2" section="$3" file="$4"
1913 if [[ -s $file ]]; then
1914 sed -ri -f - "$file" <<EOF
1915 # remove existing keys
1916 / *\[$section\]/,/^ *\[[^]]+\]/{/^\s*$key[[:space:]=]/d}
1917 # add key
1918 /^\s*\[$section\]/a $key=$value
1919 # from section to eof, do nothing
1920 /^\s*\[$section\]/,\$b
1921 # on the last line, if we haven't found section yet, add section and key
1922 \$a [$section]\\
1923 $key=$value
1924 EOF
1925 else
1926 cat >"$file" <<EOF
1927 [$section]
1928 $key=$value
1929 EOF
1930 fi
1931 }
1932
1933 sgo() { # service go
1934 service=$1
1935 ser restart $service || return 1
1936 if type -p systemctl &>/dev/null; then
1937 ser enable $service
1938 fi
1939 }
1940 soff () {
1941 for service; do
1942 # ignore services that dont exist
1943 if systemctl cat $service &>/dev/null; then
1944 ser stop $service;
1945 ser disable $service
1946 fi
1947 done
1948 }
1949
1950 sgu() {
1951 systemctl list-unit-files | rg "$@"
1952 }
1953
1954
1955 sk() {
1956
1957
1958 # disable a warning with:
1959 # shellcheck disable=SC2206 # reasoning
1960
1961 # see bash-template/style-guide.md for justifications
1962
1963 local quotes others
1964 quotes=2048,2068,2086,2206
1965 others=2029,2033,2054,2164
1966 shellcheck -W 999 -x -e $quotes,$others "$@" || return $?
1967 }
1968
1969
1970 # sl: ssh, but firsh rsync our bashrc and related files to a special
1971 # directory on the remote host if needed.
1972
1973 # Some environment variables and files need to be setup for this to work
1974 # (mine are set at the beginning of this file)
1975
1976 # SL_FILES_DIR: Environment variable. Path to folder which should at
1977 # least have a .bashrc file or symlink. This dir will be rsynced to ~ on
1978 # remote hosts (top level symlinks are resolved) unless the host already
1979 # has a $SL_FILES_DIR/.bashrc. In that case, we assume it is a host you
1980 # control and sync files to separately and already has the ~/.bashrc you
1981 # want. The remote bash will also take its .inputrc config from this
1982 # folder (default of not existing is fine). Mine looks like this:
1983 # https://iankelling.org/git/?p=distro-setup;a=tree;f=sl/.iank
1984
1985 # SL_INFO_DIR: Environment variable. This folder stores info about what
1986 # we detected on the remote system and when we last synced. It will be created
1987 # if it does not exist. Sometimes you may want to forget about a
1988 # remote system, you can use sl --rsync, or the function for that slr
1989 # below.
1990
1991 # SL_TEST_CMD: Env var. Meant to be used to vary the files synced
1992 # depending on the remote host. Run this string on the remote host the
1993 # first time sl is run (or if we run slr). The result is passed to
1994 # SL_TEST_HOOK. For example,
1995 # export SL_TEST_CMD=". /etc/os-release ; echo \${VERSION//[^a-zA-Z0-9]/}"
1996
1997 # SL_TEST_HOOK: Env var. It is run as $SL_TEST_HOOK. This can set
1998 # $SL_FILES_DIR to vary the files synced.
1999
2000 # SL_RSYNC_ARGS: Env var. String of arguments passed to rsync. For
2001 # example to exclude files within a directory. Note, excluded
2002 # files wont be deleted on rsync, you can add --delete-excluded
2003 # to the rsync command if that is desired.
2004
2005 # SL_SSH_ARGS: Env var. Default arguments passed to ssh.
2006
2007 # For when ~/.bashrc is already customized on the remote server, you
2008 # might find it problematic that ~/.bashrc is sourced for ALL ssh
2009 # commands, even in scripts. This paragraph is all about that. bash
2010 # scripts dont source ~/.bashrc, but call ssh in scripts and you get
2011 # ~/.bashrc. You dont want this. .bashrc is meant for interactive shells
2012 # and if you customize it, probably has bugs from time to time. This is
2013 # bad. Here's how I fix it. I have a special condition to "return" in my
2014 # .bashrc for noninteractive ssh shells (copy that code). Then use this
2015 # function or similar that passes LC_USEBASHRC=t when sshing and I want
2016 # my bashrc. Also, I don't keep most of my bashrc in .bashrc, i source a
2017 # separate file because even if I return early on, the whole file gets
2018 # parsed which can fail if there is a syntax error.
2019 sl() {
2020 # Background on LC_USEBASHRC var (no need to read if you just want to
2021 # use this function): env variables sent across ssh are strictly
2022 # limited, but we get LC_* at least in debian based machines, so we
2023 # just make that * be something no normal program would use. Note, on
2024 # hosts that dont allow LC_* I start an inner shell with LC_USEBASHRC
2025 # set, and the inner shell also allows running a nondefault
2026 # .bashrc. This means the outer shell still ran the default .bashrc,
2027 # but that is the best we can do.
2028
2029 local now args remote dorsync haveinfo tmpa sshinfo tmp tmp2 type info_sec force_rsync \
2030 sync_dirname testcmd extra_info testbool files_sec sl_test_cmd sl_test_hook
2031 declare -a args tmpa
2032
2033 args=($SL_SSH_ARGS)
2034
2035 # ssh [-1246Antivivisectionist] [-b bind_address] [-c cipher_spec] [-D [bind_address:]port]
2036 # [-E log_file] [-e escape_char] [-F configfile] [-I pkcs11] [-i identity_file] [-L address]
2037 # [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port] [-Q query_option]
2038 # [-R address] [-S ctl_path] [-W host:port] [-w local_tun[:remote_tun]] [user@]hostname
2039 # [command]
2040
2041 # ssh [-46AaCfGgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]
2042 # [-D [bind_address:]port] [-E log_file] [-e escape_char]
2043 # [-F configfile] [-I pkcs11] [-i identity_file]
2044 # [-J [user@]host[:port]] [-L address] [-l login_name] [-m mac_spec]
2045 # [-O ctl_cmd] [-o option] [-p port] [-Q query_option] [-R address]
2046 # [-S ctl_path] [-W host:port] [-w local_tun[:remote_tun]]
2047
2048 force_rsync=false
2049 if [[ $1 == --rsync ]]; then
2050 force_rsync=true
2051 shift
2052 fi
2053
2054 sl_test_cmd=$SL_TEST_CMD
2055 sl_test_hook=$SL_TEST_HOOK
2056 sl_rsync_args=$SL_RSYNC_ARGS
2057 while [[ $1 ]]; do
2058 case "$1" in
2059 --rsync)
2060 force_rsync=true
2061 ;;
2062 --sl-test-cmd)
2063 sl_test_cmd="$2"
2064 shift
2065 ;;
2066 --sl-test-hook)
2067 sl_test_hook="$2"
2068 shift
2069 ;;
2070 --sl-rsync-args)
2071 sl_rsync_args="$2"
2072 shift
2073 ;;
2074 *)
2075 break
2076 ;;
2077 esac
2078 shift
2079 done
2080
2081 while [[ $1 ]]; do
2082 case "$1" in
2083 # note we dont support things like -4oOption
2084 -[46AaCfGgKkMNnqsTtVvXxYy]*)
2085 args+=("$1"); shift
2086 ;;
2087 -[bcDEeFIiJLlmOopQRSWw]*)
2088 # -oOption etc is valid
2089 if (( ${#1} >= 3 )); then
2090 args+=("$1"); shift
2091 else
2092 args+=("$1" "$2"); shift 2
2093 fi
2094 ;;
2095 *)
2096 break
2097 ;;
2098 esac
2099 done
2100 remote="$1"
2101 if [[ ! $remote ]]; then
2102 echo $0: error hostname required >&2
2103 return 1
2104 fi
2105 shift
2106
2107 if [[ ! $SL_INFO_DIR ]]; then
2108 echo error: missing '$SL_INFO_DIR' env var >&2
2109 return 1
2110 fi
2111
2112 dorsync=false
2113 haveinfo=false
2114 tmpa=($SL_INFO_DIR/???????????"$remote")
2115 sshinfo=${tmpa[0]}
2116 if [[ -e $sshinfo ]]; then
2117 if $force_rsync; then
2118 rm -f $sshinfo
2119 else
2120 haveinfo=true
2121 fi
2122 fi
2123 if $haveinfo; then
2124 tmp=${sshinfo[0]##*/}
2125 tmp2=${tmp::11}
2126 type=${tmp2: -1}
2127 extra_info=$(cat $sshinfo)
2128 else
2129 # we test for string to know ssh succeeded
2130 testbool="test -e $SL_FILES_DIR/.bashrc -a -L .bashrc -a -v LC_USEBASHRC"
2131 testcmd="if $testbool; then printf y; else printf n; fi"
2132 if ! tmp=$(LC_USEBASHRC=y command ssh "${args[@]}" "$remote" "$testcmd; $sl_test_cmd"); then
2133 echo failed sl test. doing plain ssh -v
2134 command ssh -v "${args[@]}" "$remote"
2135 fi
2136 if [[ $tmp == y* ]]; then
2137 type=a
2138 else
2139 dorsync=true
2140 type=b
2141 fi
2142 extra_info="${tmp:1}"
2143 fi
2144 if [[ $sl_test_hook ]]; then
2145 RSYNC_RSH="ssh ${args[*]}" $sl_test_hook "$extra_info" "$remote"
2146 fi
2147
2148 if $haveinfo && [[ $type == b ]]; then
2149 info_sec=${tmp::10}
2150 read files_sec _ < <(find -L $SL_FILES_DIR -printf "%T@ %p\n" | sort -nr || [[ $? == 141 || ${PIPESTATUS[0]} == 32 ]] )
2151 files_sec=${files_sec%%.*}
2152 if (( files_sec > info_sec )); then
2153 dorsync=true
2154 rm -f $sshinfo
2155 fi
2156 fi
2157
2158 sync_dirname=${SL_FILES_DIR##*/}
2159
2160 if [[ ! $SL_FILES_DIR ]]; then
2161 echo error: missing '$SL_FILES_DIR' env var >&2
2162 return 1
2163 fi
2164
2165 if $dorsync; then
2166 RSYNC_RSH="ssh ${args[*]}" m rsync -rptL --delete $sl_rsync_args $SL_FILES_DIR "$remote":
2167 fi
2168 if $dorsync || ! $haveinfo; then
2169 sshinfo=$SL_INFO_DIR/$EPOCHSECONDS$type"$remote"
2170 [[ -e $SL_INFO_DIR ]] || mkdir -p $SL_INFO_DIR
2171 printf "%s\n" "$extra_info" >$sshinfo
2172 chmod 666 $sshinfo
2173 fi
2174 if [[ $type == b ]]; then
2175 if (( ${#@} )); then
2176 # Theres a couple ways to pass arguments, im not sure whats best,
2177 # but relying on bash 4.4+ escape quoting seems most reliable.
2178 command ssh "${args[@]}" "$remote" \
2179 LC_USEBASHRC=t bash -c '.\ '$sync_dirname'/.bashrc\;"\"\$@\""' bash ${@@Q}
2180 elif [[ ! -t 0 ]]; then
2181 # This case is when commands are being piped to ssh.
2182 # Normally, no bashrc gets sourced.
2183 # But, since we are doing all this, lets source it because we can.
2184 cat <(echo . $sync_dirname/.bashrc) - | command ssh "${args[@]}" "$remote" LC_USEBASHRC=t bash
2185 else
2186 command ssh -t "${args[@]}" "$remote" LC_USEBASHRC=t INPUTRC=$sync_dirname/.inputrc bash --rcfile $sync_dirname/.bashrc
2187 fi
2188 else
2189 if [[ -t 0 ]]; then
2190 LC_USEBASHRC=t command ssh "${args[@]}" "$remote" ${@@Q}
2191 else
2192 command ssh "${args[@]}" "$remote" LC_USEBASHRC=t bash
2193 fi
2194 fi
2195 # this function inspired from https://github.com/Russell91/sshrc
2196 }
2197
2198 slr() {
2199 sl --rsync "$@"
2200 }
2201 sss() { # ssh solo
2202 sl -oControlMaster=no -oControlPath=/ "$@"
2203 }
2204 # kill off old shared socket then ssh
2205 ssk() {
2206 m ssh -O exit "$@" || [[ $? == 255 ]]
2207 m sl "$@"
2208 }
2209 ccomp ssh sl slr sss ssk
2210 # plain ssh
2211 ssh() {
2212 if [[ $TERM == alacritty || $TERM == xterm-kitty ]]; then
2213 TERM=xterm-256color LC_USEBASHRC=t command ssh "$@"
2214 else
2215 LC_USEBASHRC=t command ssh "$@"
2216 fi
2217 }
2218
2219
2220 slog() {
2221 # log with script. timing is $1.t and script is $1.s
2222 # -l to save to ~/typescripts/
2223 # -t to add a timestamp to the filenames
2224 local logdir do_stamp arg_base
2225 (( $# >= 1 )) || { echo "arguments wrong"; return 1; }
2226 logdir="/a/dt/"
2227 do_stamp=false
2228 while getopts "lt" option
2229 do
2230 case $option in
2231 l ) arg_base=$logdir ;;
2232 t ) do_stamp=true ;;
2233 esac
2234 done
2235 shift $((OPTIND - 1))
2236 arg_base+=$1
2237 [[ -e $logdir ]] || mkdir -p $logdir
2238 $do_stamp && arg_base+=$(date +%F.%T%z)
2239 script -t $arg_base.s 2> $arg_base.t
2240 }
2241 splay() { # script replay
2242 #logRoot="$HOME/typescripts/"
2243 #scriptreplay "$logRoot$1.t" "$logRoot$1.s"
2244 scriptreplay "$1.t" "$1.s"
2245 }
2246
2247 sr() {
2248 # sudo redo. be aware, this command may not work right on strange distros or earlier software
2249 if [[ $# == 0 ]]; then
2250 sudo -E bash -c -l "$(history -p '!!')"
2251 else
2252 echo this command redos last history item. no argument is accepted
2253 fi
2254 }
2255
2256 srm () {
2257 # with -ll, less secure but faster.
2258 command srm -ll "$@"
2259 }
2260
2261 srun() {
2262 scp $2 $1:/tmp
2263 ssh $1 /tmp/${2##*/} $(printf "%q\n" "${@:2}")
2264 }
2265
2266
2267 swap() {
2268 local tmp
2269 tmp=$(mktemp)
2270 mv $1 $tmp
2271 mv $2 $1
2272 mv $tmp $2
2273 }
2274
2275 tclock() { # terminal clock
2276 local x
2277 clear
2278 date +%l:%_M
2279 len=60
2280 # this goes to full width
2281 #len=${1:-$((COLUMNS -7))}
2282 x=1
2283 while true; do
2284 if (( x == len )); then
2285 end=true
2286 d="$(date +%l:%_M) "
2287 else
2288 end=false
2289 d=$(date +%l:%M:%_S)
2290 fi
2291 echo -en "\r"
2292 echo -n "$d"
2293 for ((i=0; i<x; i++)); do
2294 if (( i % 6 )); then
2295 echo -n _
2296 else
2297 echo -n .
2298 fi
2299 done
2300 if $end; then
2301 echo
2302 x=1
2303 else
2304 x=$((x+1))
2305 fi
2306 sleep 5
2307 done
2308 }
2309
2310
2311 te() {
2312 # test existence / exists
2313 local ret=0
2314 for x in "$@"; do
2315 [[ -e "$x" || -L "$x" ]] || ret=1
2316 done
2317 return $ret
2318 }
2319
2320 psoff() {
2321 # normally, i would just execute these commands in the function.
2322 # however, DEBUG is not inherited, so we need to run it outside a function.
2323 # And we want to run set -x afterwards to avoid spam, so we cram everything
2324 # in here, and then it will run after this function is done.
2325 PROMPT_COMMAND='trap DEBUG; unset PROMPT_COMMAND; PS1="\w \$ "'
2326 }
2327 pson() {
2328 PROMPT_COMMAND=prompt-command
2329 if [[ $TERM == *(screen*|xterm*|rxvt*) ]]; then
2330 trap 'settitle "$BASH_COMMAND"' DEBUG
2331 fi
2332 }
2333
2334 tx() { # toggle set -x, and the prompt so it doesnt spam
2335 if [[ $- == *x* ]]; then
2336 set +x
2337 pson
2338 else
2339 psoff
2340 fi
2341 }
2342
2343 psnetns() {
2344 # show all processes in the network namespace $1.
2345 # blank entries appear to be subprocesses/threads
2346 local x netns
2347 netns=$1
2348 ps -w | head -n 1
2349 sudo find -L /proc/[1-9]*/task/*/ns/net -samefile /run/netns/$netns | cut -d/ -f5 | \
2350 while read -r l; do
2351 x=$(ps -w --no-headers -p $l);
2352 if [[ $x ]]; then echo "$x"; else echo $l; fi;
2353 done
2354 }
2355 nonet() {
2356 if ! s ip netns list | grep -Fx nonet &>/dev/null; then
2357 s ip netns add nonet
2358 fi
2359 sudo -E env /sbin/ip netns exec nonet sudo -E -u iank /bin/bash
2360 }
2361
2362 m() { printf "%s\n" "$*"; "$@"; }
2363
2364 # update file. note: duplicated in mail-setup
2365 u() {
2366 local tmp tmpdir dest="$1"
2367 local base="${dest##*/}"
2368 local dir="${dest%/*}"
2369 if [[ $dir != "$base" ]]; then
2370 # dest has a directory component
2371 mkdir -p "$dir"
2372 fi
2373 ur=false # u result
2374 tmpdir=$(mktemp -d)
2375 cat >$tmpdir/"$base"
2376 tmp=$(rsync -ic $tmpdir/"$base" "$dest")
2377 if [[ $tmp ]]; then
2378 printf "%s\n" "$tmp"
2379 ur=true
2380 if [[ $dest == /etc/systemd/system/* ]]; then
2381 reload=true
2382 fi
2383 fi
2384 rm -rf $tmpdir
2385 }
2386
2387
2388 uptime() {
2389 if type -p uprecords &>/dev/null; then
2390 uprecords -B
2391 else
2392 command uptime
2393 fi
2394 }
2395
2396 virshrm() {
2397 for x in "$@"; do virsh destroy "$x"; virsh undefine "$x"; done
2398 }
2399
2400 vm-set-listen(){
2401 local t
2402 t=$(mktemp)
2403 local vm=$1
2404 local ip=$2
2405 sudo virsh dumpxml $vm | sed -r "s/(<listen.*address=')([^']+)/\1$ip/" | \
2406 sed -r "s/listen='[^']+/listen='$ip/"> $t
2407 sudo virsh undefine $vm
2408 sudo virsh define $t
2409 }
2410
2411
2412 vmshare() {
2413 vm-set-listen $1 0.0.0.0
2414 }
2415
2416
2417 vmunshare() {
2418 vm-set-listen $1 127.0.0.1
2419 }
2420
2421 myiwscan() {
2422 # find input, copy to pattern space, when we find the first field, print the copy in different order without newlines.
2423 # instead of using labels, we could just match a line and group, eg: /signal:/,{s/signal:(.*)/\1/h}
2424 sudo iw dev wls1 scan | sed -rn "
2425 s/^\Wcapability: (.*)/\1/;Ta;h;b
2426 :a;s/^\Wsignal: -([^.]+).*/\1/;Tb;H;b
2427 # padded to min width of 20
2428 :b;s/\WSSID: (.*)/\1 /;T;s/^(.{20}(.*[^ ])?) */\1/;H;g;s/(.*)\n(.*)\n(.*)/\2 \3 \1/gp;b
2429 "|sort -r
2430 }
2431
2432 # Run script by copying it to a temporary location first,
2433 # and changing directory, so we don't have any open
2434 # directories or files that could cause problems when
2435 # remounting.
2436 zr() {
2437 local tmp
2438 tmp=$(type -p "$1")
2439 if [[ $tmp ]]; then
2440 cd $(mktemp -d)
2441 cp -a "$tmp" .
2442 shift
2443 ./"${tmp##*/}" "$@"
2444 else
2445 "$@"
2446 fi
2447 }
2448
2449
2450 # * spark
2451 # spark 1 5 22 13 53
2452 # # => ▁▁▃▂▇
2453
2454 # The MIT License
2455 # Copyright (c) Zach Holman, https://zachholman.com
2456 # https://github.com/holman/spark
2457
2458 # As of 2022-10-28, I reviewed github forks that had several newer
2459 # commits, none had anything interesting. I did a little refactoring
2460 # mostly to fix emacs indent bug.
2461
2462 # Generates sparklines.
2463 _spark_echo()
2464 {
2465 if [ "X$1" = "X-n" ]; then
2466 shift
2467 printf "%s" "$*"
2468 else
2469 printf "%s\n" "$*"
2470 fi
2471 }
2472
2473
2474 spark()
2475 {
2476 local f tc
2477 local n numbers=
2478
2479 # find min/max values
2480 local min=0xffffffff max=0
2481
2482 for n in ${@//,/ }
2483 do
2484 # on Linux (or with bash4) we could use `printf %.0f $n` here to
2485 # round the number but that doesn't work on OS X (bash3) nor does
2486 # `awk '{printf "%.0f",$1}' <<< $n` work, so just cut it off
2487 n=${n%.*}
2488 (( n < min )) && min=$n
2489 (( n > max )) && max=$n
2490 numbers=$numbers${numbers:+ }$n
2491 done
2492
2493 # print ticks
2494 local ticks=(▁ ▂ ▃ ▄ ▅ ▆ ▇ █)
2495
2496 # use a high tick if data is constant
2497 (( min == max )) && ticks=(▅ ▆)
2498
2499 tc=${#ticks[@]}
2500 f=$(( ( (max-min) <<8)/( tc - 1) ))
2501 (( f < 1 )) && f=1
2502
2503 for n in $numbers
2504 do
2505 _spark_echo -n ${ticks[$(( ((($n-$min)<<8)/$f) ))]}
2506 done
2507 _spark_echo
2508 }
2509
2510
2511 # * misc stuff
2512
2513
2514 if $use_color && type -p tput &>/dev/null; then
2515 term_bold="$(tput bold)"
2516 term_red="$(tput setaf 1)"
2517 term_green="$(tput setaf 2)"
2518 term_yellow="$(tput setaf 3)"
2519 term_purple="$(tput setaf 5)"
2520 term_nocolor="$(tput sgr0)" # no font attributes
2521
2522 # unused so far. commented for shellcheck
2523 # term_underl="$(tput smul)"
2524 # term_blue="$(tput setaf 4)"
2525 # term_cyan="$(tput setaf 6)"
2526 fi
2527 # Try to keep environment pollution down, EPA loves us.
2528 unset safe_term match_lhs use_color
2529
2530 # * prompt
2531
2532
2533 if [[ $- == *i* ]]; then
2534
2535
2536 case $HOSTNAME in
2537 bk|je|li)
2538 if [[ $EUID == 1000 ]]; then
2539 system-status _ ||:
2540 fi
2541 ;;
2542 esac
2543
2544
2545 # this needs to come before next ps1 stuff
2546 # this stuff needs bash 4, feb 2009,
2547 # old enough to no longer condition on $BASH_VERSION anymore
2548 shopt -s autocd
2549 shopt -s dirspell
2550 PS1='\w'
2551 if [[ $- == *i* ]] && [[ ! $LC_INSIDE_EMACS ]]; then
2552 PROMPT_DIRTRIM=2
2553 bind -m vi-command B:shell-backward-word
2554 bind -m vi-command W:shell-forward-word
2555 fi
2556
2557 if [[ $SSH_CLIENT || $SUDO_USER ]]; then
2558 unset PROMPT_DIRTRIM
2559 PS1="\h:$PS1"
2560 fi
2561
2562 # emacs terminal has problems if this runs slowly,
2563 # so I've thrown a bunch of things at the wall to speed it up.
2564 prompt-command() {
2565 local return=$? # this MUST COME FIRST
2566 local ps_char ps_color
2567 unset IFS
2568
2569 if [[ $HISTFILE ]]; then
2570 history -a # save history
2571 fi
2572
2573 case $return in
2574 0) ps_color="$term_purple"
2575 ps_char='\$'
2576 ;;
2577 *) ps_color="$term_green"
2578 ps_char="$return \\$"
2579 ;;
2580 esac
2581 if [[ ! -O . ]]; then # not owner
2582 if [[ -w . ]]; then # writable
2583 ps_color="$term_bold$term_red"
2584 else
2585 ps_color="$term_bold$term_green"
2586 fi
2587 fi
2588
2589 # faster than sourceing the file im guessing
2590 if [[ -e /dev/shm/iank-status && ! -e /tmp/quiet-status ]]; then
2591 eval $(< /dev/shm/iank-status)
2592 fi
2593 if [[ $MAIL_HOST && $MAIL_HOST != "$HOSTNAME" ]]; then
2594 ps_char="@ $ps_char"
2595 fi
2596 jobs_char=
2597 if [[ $(jobs -p) ]]; then
2598 jobs_char='\j '
2599 fi
2600 # We could test if sudo is active with sudo -nv
2601 # but then we get an email and log of lots of failed sudo commands.
2602 # We could turn those off, but seems better not to.
2603 if [[ $EUID != 0 ]] && [[ $DID_SUDO ]]; then
2604 psudo="\[$term_bold$term_red\]s\[$term_nocolor\] "
2605 fi
2606 if [[ ! $HISTFILE ]]; then
2607 ps_char="NOHIST $ps_char"
2608 fi
2609 PS1="${PS1%"${PS1#*[wW]}"} $jobs_char$psudo\[$ps_color\]$ps_char\[$term_nocolor\] "
2610
2611 # set titlebar. instead, using more advanced
2612 # titelbar below
2613 #echo -ne "$_title_escape $HOSTNAME ${PWD/#$HOME/~} \007"
2614 }
2615 PROMPT_COMMAND=prompt-command
2616
2617 if [[ $TERM == screen* ]]; then
2618 _title_escape="\033]..2;"
2619 else
2620 # somme sites recommend this, i dunno what the diff is.
2621 #_title_escape="\033]30;"
2622 _title_escape="\033]0;"
2623 fi
2624
2625 # make the titlebar be the last command and the current directory.
2626 settitle () {
2627
2628
2629 # These are some checks to help ensure we dont set the title at
2630 # times that the debug trap is running other than the case we
2631 # want. Some of them might not be needed.
2632 if (( ${#FUNCNAME[@]} != 1 || ${#BASH_ARGC[@]} != 2 || $BASH_SUBSHELL != 0 )); then
2633 return 0
2634 fi
2635 if [[ $1 == prompt-command ]]; then
2636 return 0
2637 fi
2638 echo -ne "$_title_escape ${PWD/#$HOME/~} "
2639 printf "%s" "$*"
2640 echo -ne "\007"
2641 }
2642
2643 # note, this wont work:
2644 # x=$(mktemp); cp a $x
2645 # I havnt figured out why, bigger fish to fry.
2646 #
2647 # for titlebar.
2648 # condition from the screen man page i think.
2649 # note: duplicated in tx()
2650 if [[ $TERM == *(screen*|xterm*|rxvt*) ]]; then
2651 trap 'settitle "$BASH_COMMAND"' DEBUG
2652 else
2653 trap DEBUG
2654 fi
2655
2656 fi
2657
2658 # * stuff that makes sense to be at the end
2659
2660
2661 # best practice
2662 unset IFS
2663
2664 # shellcheck disable=SC1090
2665 [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
2666
2667 # I had this idea to start a bash shell which would run an initial
2668 # command passed through this env variable, then continue on
2669 # interactively. But the use case I had in mind went away.
2670 #
2671 # if [[ $MY_INIT_CMD ]]; then
2672 # "${MY_INIT_CMD[@]}"
2673 # unset MY_INIT_CMD
2674 # fi
2675
2676 # ensure no bad programs appending to this file will have an affect
2677 return 0