new feature: fzf
[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
1113
1114
1115 fa() {
1116 # find array. make an array of file names found by find into $x
1117 # argument: find arguments
1118 # return: find results in an array $x
1119 while read -rd ''; do
1120 x+=("$REPLY");
1121 done < <(find "$@" -print0);
1122 }
1123
1124 faf() { # find all files. use -L to follow symlinks
1125 find "$@" -not \( -name .svn -prune -o -name .git -prune \
1126 -o -name .hg -prune -o -name .editor-backups -prune \
1127 -o -name .undo-tree-history -prune \) -type f 2>/dev/null
1128 }
1129
1130 # usage ffconcat FILES_TO_CONCAT OUTPUT_FILE
1131 ffconcat() {
1132 local tmpf
1133 tmpf=$(mktemp)
1134 printf "file '%s'\n" "$1" >$tmpf
1135 while (( $# > 1 )); do
1136 shift
1137 printf "file '%s'\n" "$1" >>$tmpf
1138 done
1139 # https://trac.ffmpeg.org/wiki/Concatenate
1140 ffmpeg -f concat -safe 0 -i $tmpf -c copy "$1"
1141 rm $tmpf
1142 }
1143
1144 # full path without resolving symlinks
1145 fp() {
1146 local dir base
1147 base="${1##*/}"
1148 dir="${1%$base}"
1149 printf "%s/%s\n" $(cd $dir; pwd) "$base"
1150 }
1151
1152
1153 # mail related
1154 frozen() {
1155 rm -rf /tmp/frozen
1156 sudo mailq |gr frozen|awk '{print $3}' | while read -r id; do
1157 sudo exim -Mvl $id
1158 echo
1159 sudo exim -Mvh $id
1160 echo
1161 sudo exim -Mvb $id
1162 echo -e '\n\n##############################\n'
1163 done | tee -a /tmp/frozen
1164 }
1165 frozenrm() {
1166 local ids=()
1167 while read -r line; do
1168 printf '%s\n' "$line"
1169 ids+=($(printf '%s\n' "$line" |gr frozen|awk '{print $3}'))
1170 done < <(s mailq)
1171 echo "sleeping for 2 in case you change your mind"
1172 sleep 2
1173 sudo exim -Mrm "${ids[@]}"
1174 }
1175
1176 funce() {
1177 # like -e for functions. returns on error.
1178 # at the end of the function, disable with:
1179 # trap ERR
1180 trap 'echo "${BASH_COMMAND:+BASH_COMMAND=\"$BASH_COMMAND\" }
1181 ${FUNCNAME:+FUNCNAME=\"$FUNCNAME\" }${LINENO:+LINENO=\"$LINENO\" }\$?=$?"
1182 trap ERR
1183 return' ERR
1184 }
1185
1186 getdir () {
1187 local help="Usage: getdir [--help] PATH
1188 Output the directory of PATH, or just PATH if it is a directory."
1189 if [[ $1 == --help ]]; then
1190 echo "$help"
1191 return 0
1192 fi
1193 if [[ $# -ne 1 ]]; then
1194 echo "getdir error: expected 1 argument, got $#"
1195 return 1
1196 fi
1197 if [[ -d $1 ]]; then
1198 echo "$1"
1199 else
1200 local dir
1201 dir="$(dirname "$1")"
1202 if [[ -d $dir ]]; then
1203 echo "$dir"
1204 else
1205 echo "getdir error: directory does not exist"
1206 return 1
1207 fi
1208 fi
1209 }
1210
1211 git_empty_branch() { # start an empty git branch. carefull, it deletes untracked files.
1212 [[ $# == 1 ]] || { echo 'need a branch name!'; return 1;}
1213 local root
1214 root=$(gitroot) || return 1 # function to set gitroot
1215 builtin cd "$root"
1216 git symbolic-ref HEAD refs/heads/$1
1217 rm .git/index
1218 git clean -fdx
1219 }
1220
1221 # shellcheck disable=SC2120
1222 gitroot() {
1223 local help="Usage: gitroot [--help]
1224 Print the full path to the root of the current git repo
1225
1226 Handles being within a .git directory, unlike git rev-parse --show-toplevel,
1227 and works in older versions of git which did not have that."
1228 if [[ $1 == --help ]]; then
1229 echo "$help"
1230 return
1231 fi
1232 local p
1233 p=$(git rev-parse --git-dir) || { echo "error: not in a git repo" ; return 1; }
1234 [[ $p != /* ]] && p=$PWD
1235 echo "${p%%/.git}"
1236 }
1237
1238 g() {
1239
1240 # todo: patch emacs so it will look elsewhere. this is kinda sad:
1241 # https://emacs.stackexchange.com/questions/4253/how-to-start-emacs-with-a-custom-user-emacs-directory
1242
1243 local args gdb=false
1244
1245 if [[ $EMACSDIR ]]; then
1246 path-add "$EMACSDIR/lib-src" "$EMACSDIR/src"
1247 fi
1248
1249 if [[ $DISPLAY ]]; then
1250 args=-n
1251 fi
1252
1253 if (( $# == 0 )); then
1254 args+=" -c"
1255 fi
1256 # duplicate -c, but oh well
1257 if ! pgrep -u $EUID emacsclient; then
1258 if (( $# == 0 )) && type -p gdb &>/dev/null; then
1259 gdb=true
1260 else
1261 args+=" -c"
1262 fi
1263 fi
1264 if [[ $EMACSDIR ]]; then
1265 # Alter the path here, otherwise the nfs mount gets triggered on the
1266 # first path lookup when emacs is not being used.
1267 PATH="$EMACSDIR/lib-src:$EMACSDIR/src:$PATH" EHOME=$HOME HOME=$EMACSDIR m emacsclient -a "" $args "$@"
1268 else
1269 if $gdb; then
1270 # due to a bug, we cant debug from the start unless we get a new gdb
1271 # https://sourceware.org/bugzilla/show_bug.cgi?id=24454
1272 # m gdb -ex="set follow-fork-mode child" -ex=r -ex=quit --args emacs --daemon
1273 m emacsclient -a "" $args "$@"
1274 sleep 1
1275 cd /a/opt/emacs-$(distro-name)$(distro-num)
1276 s gdb -p $(pgrep -f 'emacs --daemon') -ex c
1277 cd -
1278 else
1279 m emacsclient -a "" $args "$@"
1280 fi
1281 fi
1282 }
1283
1284 # force terminal version
1285 gn() {
1286 g -n "$@"
1287 }
1288
1289 gmacs() {
1290 # quit will prompt if the program crashes.
1291 gdb -ex=r -ex=quit --args emacs "$@"; r;
1292 }
1293
1294 gdkill() {
1295 # kill the emacs daemon
1296 pk1 emacs --daemon
1297 }
1298
1299 gr() {
1300 grep -iIP --color=auto "$@" || return $?
1301 }
1302 grr() { # grep recursive
1303 # Don't return 1 on nonmatch because this is meant to be
1304 # interactive, not in a conditional.
1305 if [[ ${#@} == 1 ]]; then
1306 grep --exclude-dir='*.emacs.d' --exclude-dir='*.git' -riIP --color=auto "$@" . || [[ $? == 1 ]]
1307 else
1308 grep --exclude-dir='*.emacs.d' --exclude-dir='*.git' -riIP --color=auto "$@" || [[ $? == 1 ]]
1309 fi
1310 }
1311 ccomp grep gr grr
1312
1313 rg() { grr "$@"; }
1314 ccomp grep rg
1315
1316 hr() { # horizontal row. used to break up output
1317 printf "$(tput setaf 5 2>/dev/null ||:)█$(tput sgr0 2>/dev/null||:)%.0s" $(eval echo "{1..${COLUMNS:-60}}")
1318 echo
1319 }
1320 # highlight
1321 hl() {
1322 local col input_len=0
1323 for arg; do
1324 input_len=$((input_len + 1 + ${#arg}))
1325 done
1326 col=$((60 - input_len))
1327 printf "\e[1;97;41m%s" "$*"
1328 if (( col > 0 )); then
1329 printf "\e[1;97;41m \e[0m%.0s" $(eval echo "{1..${col}}")
1330 fi
1331 echo
1332 }
1333 hlm() { hl "$*"; "$@"; }
1334
1335 hrcat() { local f; for f; do [[ -f $f ]] || continue; hr; echo "$f"; cat "$f"; done }
1336
1337
1338 # get latest hub and run it
1339 # main command to use:
1340 # hub pull-request --no-edit
1341 # --no-edit means to use the first commit\'s message as the pull request message.
1342 # If that fails, try doing
1343 # hub pull-request --no-edit -b UPSTREAM_OWNER:branch
1344 # where branch is usually master. it does the pr against your current branch.
1345 #
1346 # On first use, you input username/pass and it gets an oath token so you dont have to repeat
1347 # it\'s at ~/.config/hub
1348 hub() {
1349 local up uptar updir p v
1350 # example https://github.com/github/hub/releases/download/v2.14.2/hub-linux-amd64-2.14.2.tgz
1351 up=$(wget -q -O- https://api.github.com/repos/github/hub/releases/latest | jq -r .assets[].browser_download_url | grep linux-amd64)
1352 re='[[:space:]]'
1353 if [[ ! $up || $up == $re ]]; then
1354 echo "failed to get good update url. got: $up"
1355 fi
1356 uptar=${up##*/}
1357 updir=${uptar%.tgz}
1358 if [[ ! -e /a/opt/$updir ]]; then
1359 rm -rf /a/opt/hub-linux-amd64*
1360 wget -P /a/opt $up
1361 tar -C /a/opt -zxf /a/opt/$uptar
1362 rm -f /a/opt/$uptar
1363 fi
1364 if ! which hub &>/dev/null; then
1365 sudo /a/opt/$updir/install
1366 fi
1367
1368 # save token across computers
1369 if [[ ! -L ~/.config/hub ]]; then
1370 if [[ -e ~/.config/hub ]]; then
1371 mv ~/.config/hub /p/c/subdir_files/.config/
1372 fi
1373 if [[ -e /p/c/subdir_files/.config/hub ]]; then
1374 conflink
1375 fi
1376 fi
1377 command hub "$@"
1378 }
1379
1380 i() { git "$@"; }
1381 ccomp git i
1382
1383 # git status:
1384 # cvs -qn update
1385
1386 # git checkout FILE
1387 # cvs update -C FILE
1388
1389 # git pull
1390 # cvs up[date]
1391
1392 # potentially useful command translation
1393 # https://fling.seas.upenn.edu/~giesen/dynamic/wordpress/equivalent-commands-for-git-svn-and-cvs/
1394
1395 # importing cvs repo into git using git-cvs package:
1396 # /f/www $ /usr/lib/git-core/git-cvsimport -C /f/www-git
1397
1398 ic() {
1399 # fast commit all
1400 git commit -am "$*"
1401 }
1402
1403 ipp() {
1404 git pull
1405 git push
1406 }
1407
1408
1409 ifn() {
1410 # insensitive find
1411 # -L = follow symlinks
1412 find -L . -not \( -name .svn -prune -o -name .git -prune \
1413 -o -name .hg -prune -o -name .editor-backups -prune \
1414 -o -name .undo-tree-history -prune \) -iname "*$**" 2>/dev/null
1415 }
1416
1417 ifd() {
1418 # insensitive find directory
1419 find -L . -type d -not \( -name .svn -prune -o -name .git -prune \
1420 -o -name .hg -prune -o -name .editor-backups -prune \
1421 -o -name .undo-tree-history -prune \) -iname "*$**" 2>/dev/null
1422 }
1423
1424
1425 ipdrop() {
1426 sudo iptables -A INPUT -s $1 -j DROP
1427 }
1428
1429
1430 istext() {
1431 grep -Il "" "$@" &>/dev/null
1432 }
1433
1434 pst() {
1435 pstree -apnA
1436 }
1437
1438 jtail() {
1439 journalctl -n 10000 -f "$@"
1440 }
1441 jr() { journalctl "$@" ; }
1442 jrf() { journalctl -f "$@" ; }
1443 jru() {
1444 journalctl -u exim4 _SYSTEMD_INVOCATION_ID=$(systemctl show -p InvocationID --value $1)
1445 }
1446
1447
1448
1449 l() {
1450 if [[ $PWD == /[iap] ]]; then
1451 command ls -A --color=auto -I lost+found "$@"
1452 else
1453 command ls -A --color=auto "$@"
1454 fi
1455 }
1456
1457 lcn() { locate -i "*$**"; }
1458
1459 lg() { LC_COLLATE=C.UTF-8 ll --group-directories-first "$@"; }
1460
1461 lt() { ll -tr "$@"; }
1462
1463 lld() { ll -d "$@"; }
1464
1465 ccomp ls l lg lt lld ll
1466
1467 # low recursively
1468 lowr() {
1469 local f dirs i a
1470 local -a all
1471 for dirs in false true; do
1472 for f; do
1473 if [[ -d $f ]]; then
1474 all=("$f"/**)
1475 # reverse the order to rename the nested dirs first.
1476 # note: 0 element is the dir itself
1477 for ((i=${#all[@]}-1; i>=1; i--)); do
1478 a="${all[i]}"
1479 if $dirs && [[ -d $a ]]; then
1480 # e dirs low "$a" # debug
1481 low "$a"
1482 elif ! $dirs && [[ ! -d $a && -e $a ]]; then
1483 # debug
1484 # e not dirs low "$a" # debug
1485 low "$a"
1486 fi
1487 done
1488 fi
1489 # just rename all the top level args on the second pass
1490 if $dirs; then
1491 # e final dirs low "$f" # debug
1492 low "$f"
1493 fi
1494 done
1495 done
1496 }
1497
1498 low() { # make filenames lowercase, remove bad chars
1499 local arg new dir f
1500 for arg; do
1501 arg="${arg%%+(/)}" # remove trailing slashes. assumes we have extglob on.
1502 dir="${arg%/*}"
1503 if (( ${#dir} == ${#arg} )); then
1504 dir=.
1505 fi
1506 f="${arg##*/}"
1507 new="${f,,}" # downcase
1508 new="${new//[^a-zA-Z0-9._-]/_}" # sub bad chars
1509 new="${new#"${new%%[[:alnum:]]*}"}" # remove leading/trailing non-alnum
1510 new="${new%"${new##*[[:alnum:]]}"}"
1511 # remove bad underscores, like __ and _._
1512 new=$(echo $new | sed -r 's/__+/_/g;s/_+([.-])|([.-])_+/\1/g')
1513 safe_rename "$dir/$f" "$dir/$new" || return 1
1514 done
1515 return 0
1516 }
1517
1518 lower() { # make first letter of filenames lowercase.
1519 local x
1520 for x in "$@"; do
1521 if [[ ${x::1} == [A-Z] ]]; then
1522 y=$(tr '[:upper:]' '[:lower:]' <<<"${x::1}")"${x:1}"
1523 safe_rename "$x" "$y" || return 1
1524 fi
1525 done
1526 }
1527
1528
1529 k() { # history search
1530 grep -iP --binary-files=text "$@" ${HISTFILE:-~/.bash_history} | tail -n 80 || [[ $? == 1 ]];
1531 }
1532 ks() { # history search with context
1533 # args are an extended regex used by sed
1534 history | sed -nr "h;s/^\s*(\S+\s+){4}//;/$*/{g;p}" | tail -n 80 || [[ $? == 1 ]];
1535 }
1536 ksu() { # history search unique
1537 grep -P --binary-files=text "$@" ${HISTFILE:-~/.bash_history} | uniq || [[ $? == 1 ]];
1538 }
1539
1540 # todo: id like to do maybe a daily or hourly cronjob to
1541 # check that my history file size is increasing. Ive had it
1542 # inexplicably truncated in the past.
1543 histrm() {
1544 history -n
1545 HISTTIMEFORMAT= history | awk -v IGNORECASE=1 '{ a=$1; sub(/^ *[^ ]+ */, "") }; /'"$*"'/'
1546 read -p "press anything but contrl-c to delete"
1547 for entry in $(HISTTIMEFORMAT= history | awk -v IGNORECASE=1 '{ a=$1; sub(/^ *[^ ]+ */, "") }; /'"$*"'/ { print a }' | tac); do
1548 history -d $entry
1549 done
1550 history -w
1551 }
1552
1553 ccomp grep k ks ksu histrm
1554
1555
1556 make-targets() {
1557 # show make targets, via http://stackoverflow.com/questions/3063507/list-goals-targets-in-gnu-make
1558 make -qp | awk -F':' '/^[a-zA-Z0-9][^$#\/\t=]*:([^=]|$)/ {split($1,A,/ /);for(i in A)print A[i]}'
1559 }
1560
1561 mkc() {
1562 mkdir "$1"
1563 c "$1"
1564 }
1565 ccomp mkdir mkc
1566
1567 mkct() {
1568 mkc $(mktemp -d)
1569 }
1570
1571 mkt() { # mkdir and touch file
1572 local path="$1"
1573 mkdir -p "$(dirname "$path")"
1574 touch "$path"
1575 }
1576
1577 # shellcheck disable=SC2032
1578 mkdir() { command mkdir -p "$@"; }
1579
1580 nags() {
1581 # https://github.com/HenriWahl/Nagstamon/issues/357
1582 if ! pgrep -f /usr/lib/notification-daemon/notification-daemon >/dev/null; then
1583 /usr/lib/notification-daemon/notification-daemon &
1584 fi
1585 /usr/bin/nagstamon &
1586 }
1587
1588 nmt() {
1589 # cant use s because sudo -i doesnt work for passwordless sudo command
1590 case $EUID in
1591 0)
1592 sudo nmtui-connect "$@"
1593 ;;
1594 *)
1595 nmtui-connect "$@"
1596 ;;
1597 esac
1598 }
1599
1600
1601 ngset() {
1602 if shopt nullglob >/dev/null; then
1603 ngreset=false
1604 else
1605 shopt -s nullglob
1606 ngreset=true
1607 fi
1608 }
1609 ngreset() {
1610 if $ngreset; then
1611 shopt -u nullglob
1612 fi
1613 }
1614
1615 nopanic() {
1616 # shellcheck disable=SC2024
1617 ngset
1618 for f in /var/log/exim4/paniclog /var/log/exim4/*panic; do
1619 base=${f##*/}
1620 if [[ -s $f ]]; then
1621 echo ================== $f =============
1622 s tee -a /var/log/exim4/$base-archive <$f
1623 s truncate -s0 $f
1624 fi
1625 done
1626 ngreset
1627 }
1628
1629
1630 ping() { command ping -O "$@"; }
1631 p8() { ping "$@" 8.8.8.8; }
1632 p6() { ping6 "$@" 2001:4860:4860::8888; }
1633
1634 pkx() { # package extract
1635 local pkg cached tmp f
1636 c $(mktemp -d)
1637 pkg=$1
1638 # shellcheck disable=SC2012
1639 cached=$(ls -t /var/cache/apt/archives/$pkg* | tail -n1 2>/dev/null) ||:
1640 if [[ $cached ]]; then
1641 cp $cached .
1642 else
1643 aptitude download $pkg || return 1
1644 fi
1645 tmp=(*); f=${tmp[0]} # only 1 expected
1646 ex $f
1647 rm -f $f
1648 }
1649
1650 # pgrep and kill
1651 pk1() {
1652 local pid
1653 pid=($(pgrep -f "$*"))
1654 case ${#pid[@]} in
1655 1)
1656 # shellcheck disable=SC2128
1657 {
1658 ps -F $pid
1659 m kill $pid
1660 }
1661 ;;
1662 0) echo "no pid found" ;;
1663 *)
1664 ps -F ${pid[@]}
1665 ;;
1666 esac
1667 }
1668
1669 psg () {
1670 local x y help
1671 help="Usage: psg [--help] GREP_ARGS
1672 grep ps and output in a nice format"
1673 if [[ $1 == --help ]]; then
1674 echo "$help"
1675 return
1676 fi
1677 x=$(ps -eF)
1678 # final grep is because some commands tend to have a lot of trailing spaces
1679 y=$(echo "$x" | grep -iP "$@" | grep -o '.*[^ ]') ||:
1680 if [[ $y ]]; then
1681 echo "$x" | head -n 1 || [[ $? == 141 ]]
1682 echo "$y"
1683 fi
1684 }
1685
1686 pubip() { curl -4s https://icanhazip.com; }
1687 pubip6() { curl -6s https://icanhazip.com; }
1688 whatismyip() { pubip; }
1689
1690
1691 q() { # start / launch a program in the backround and redir output to null
1692 "$@" &> /dev/null &
1693 }
1694
1695 # shellcheck disable=SC2120
1696 r() {
1697 if [[ $HISTFILE ]]; then
1698 history -a # save history
1699 fi
1700 trap ERR # this avoids a segfault
1701 exit ${1:0}
1702 # i had this redir, not sure why
1703 # exit "$@" 2>/dev/null
1704 }
1705
1706 # scp is insecure and deprecated.
1707 scp() {
1708 rsync --inplace "$@"
1709 }
1710 ccomp rsync scp
1711
1712 randport() {
1713 # available high ports are 1024-65535,
1714 # but lets skip things that are more likely to be in use
1715 python3 <<'EOF'
1716 import secrets
1717 print(secrets.SystemRandom().randrange(10002,65500))
1718 EOF
1719 }
1720
1721 # reapply bashrc
1722 reb() {
1723 source ~/.bashrc
1724 }
1725
1726 rl() {
1727 readlink -f "$@"
1728 }
1729 ccomp readlink rl
1730
1731 rsd() {
1732 # rsync, root is required to keep permissions right.
1733 # rsync --archive --human-readable --verbose --itemize-changes --checksum \(-ahvic\) \
1734 # --no-times --delete
1735 # basically, make an exact copy, use checksums instead of file times to be more accurate
1736 rsync -ahvic --delete "$@"
1737 }
1738 rsa() {
1739 # like rlu, but dont delete files on the target end which
1740 # do not exist on the original end.
1741 rsync -ahvic "$@"
1742 }
1743 rst() {
1744 # rl without preserving modification time.
1745 rsync -ahvic --delete --no-t "$@"
1746 }
1747 # [RSYNC_OPTS] HOST PATH
1748 rsu() {
1749 # eg. rsu -opts frodo /testpath
1750 # relative paths will expanded with readlink -f.
1751 opts=("${@:1:$#-2}") # 1 to last -2
1752 path="${*:$#}" # last
1753 host="${*:$#-1:1}" # last -1
1754 if [[ $path == .* ]]; then
1755 path=$(readlink -f $path)
1756 fi
1757 m rsync -ahvi --relative --no-implied-dirs "${opts[@]}" "$path" "root@$host:/";
1758 }
1759 ccomp rsync rsd rsa rst rsu
1760
1761 # find programs listening on a port
1762 ssp() {
1763 local port=$1
1764 # to figure out these args, i had to look at the man page from git version, as of 2022-04.
1765 s ss -lpn state listening sport = $port
1766 }
1767
1768 resolvcat() {
1769 local f
1770 if [[ $(systemctl is-active nscd ||:) != inactive ]]; then
1771 m s nscd -i hosts
1772 fi
1773 f=/etc/resolv.conf
1774 echo $f:; ccat $f
1775 hr; s ss -lpn sport = 53
1776 if systemctl is-enabled dnsmasq &>/dev/null || [[ $(systemctl is-active dnsmasq ||:) != inactive ]]; then
1777 # this will fail is dnsmasq is failed
1778 hr; m ser status dnsmasq | cat || :
1779 f=/etc/dnsmasq.conf
1780 hr; echo $f:; ccat $f
1781 hr; m grr '^ *(servers-file|server) *=|^ *no-resolv *$' /etc/dnsmasq.conf /etc/dnsmasq.d
1782 f=/etc/dnsmasq-servers.conf
1783 hr; echo $f:; ccat $f
1784 fi
1785 hr
1786 echo /etc/nsswitch.conf:
1787 grep '^ *hosts:' /etc/nsswitch.conf
1788 if systemctl is-enabled systemd-resolved &>/dev/null || [[ $(systemctl is-active systemd-resolved ||:) != inactive ]]; then
1789 hr; m ser status systemd-resolved | cat || :
1790 hr; m resolvectl status | cat
1791 fi
1792
1793 }
1794 rcat() {
1795 resolvcat | less
1796 }
1797 reresolv() {
1798 if [[ $(systemctl is-active nscd ||:) != inactive ]]; then
1799 m ser stop nscd
1800 sleep .5
1801 m ser start nscd
1802 m sudo nscd -i hosts
1803 fi
1804 if [[ $(systemctl is-active dnsmasq ||:) != inactive ]]; then
1805 m sudo systemctl restart dnsmasq
1806 fi
1807 if [[ $(systemctl is-active systemd-resolved ||:) != inactive ]]; then
1808 m sudo systemctl restart systemd-resolved
1809 fi
1810 if type -P resolvectl &>/dev/null; then
1811 resolvectl flush-caches
1812 fi
1813 }
1814
1815 rmstrips() {
1816 ssh fencepost head -n 300 /gd/gnuorg/EventAndTravelInfo/rms-current-trips.txt | less
1817 }
1818
1819 urun () {
1820 umask $1
1821 shift
1822 "$@"
1823 }
1824 sudo () {
1825 command sudo "$@" || return $?
1826 DID_SUDO=true
1827 }
1828 s() {
1829 # background
1830 # I use a function because otherwise we cant use in a script,
1831 # cant assign to variable.
1832 #
1833 # note: gksudo is recommended for X apps because it does not set the
1834 # home directory to the same, and thus apps writing to ~ fuck things up
1835 # with root owned files.
1836 #
1837 if [[ $EUID != 0 || $1 == -* ]]; then
1838 # shellcheck disable=SC2034
1839 SUDOD="$PWD" command sudo -i "$@"
1840 DID_SUDO=true
1841 else
1842 "$@"
1843 fi
1844 }
1845 sb() { # sudo bash -c
1846 # use sb instead of s is for sudo redirections,
1847 # eg. sb 'echo "ok fine" > /etc/file'
1848 # shellcheck disable=SC2034
1849 local SUDOD="$PWD"
1850 sudo -i bash -c "$@"
1851 }
1852 # secret sudo
1853 se() { s urun 0077 "$@"; }
1854 ccomp sudo s sb se
1855
1856 safe_rename() { # warn and dont rename if file exists.
1857 # mv -n exists, but it\'s silent
1858 if [[ $# != 2 ]]; then
1859 echo safe_rename error: $# args, need 2 >2
1860 return 1
1861 fi
1862 if [[ $1 != "$2" ]]; then # yes, we want to silently ignore this
1863 if [[ -e $2 || -L $2 ]]; then
1864 echo "Cannot rename $1 to $2 as it already exists."
1865 else
1866 mv -vi "$1" "$2"
1867 fi
1868 fi
1869 }
1870
1871
1872 sd() {
1873 sudo dd status=none of="$1"
1874 }
1875
1876 ser() {
1877 if type -p systemctl &>/dev/null; then
1878 s systemctl "$@"
1879 else
1880 if (( $# >= 3 )); then
1881 echo iank: ser expected 2 or less arguments
1882 return 1
1883 fi
1884 s service $2 $1
1885 fi
1886 }
1887 serstat() {
1888 systemctl -n 40 status "$@"
1889 }
1890
1891 seru() { systemctl --user "$@"; }
1892 # like restart, but do nothing if its not already started
1893 srestart() {
1894 local service=$1
1895 if [[ $(s systemctl --no-pager show -p ActiveState $service ) == ActiveState=active ]]; then
1896 systemctl restart $service
1897 fi
1898 }
1899
1900 setini() { # set a value in a .ini style file
1901 key="$1" value="$2" section="$3" file="$4"
1902 if [[ -s $file ]]; then
1903 sed -ri -f - "$file" <<EOF
1904 # remove existing keys
1905 / *\[$section\]/,/^ *\[[^]]+\]/{/^\s*$key[[:space:]=]/d}
1906 # add key
1907 /^\s*\[$section\]/a $key=$value
1908 # from section to eof, do nothing
1909 /^\s*\[$section\]/,\$b
1910 # on the last line, if we haven't found section yet, add section and key
1911 \$a [$section]\\
1912 $key=$value
1913 EOF
1914 else
1915 cat >"$file" <<EOF
1916 [$section]
1917 $key=$value
1918 EOF
1919 fi
1920 }
1921
1922 sgo() { # service go
1923 service=$1
1924 ser restart $service || return 1
1925 if type -p systemctl &>/dev/null; then
1926 ser enable $service
1927 fi
1928 }
1929 soff () {
1930 for service; do
1931 # ignore services that dont exist
1932 if systemctl cat $service &>/dev/null; then
1933 ser stop $service;
1934 ser disable $service
1935 fi
1936 done
1937 }
1938
1939 sgu() {
1940 systemctl list-unit-files | rg "$@"
1941 }
1942
1943
1944 sk() {
1945
1946
1947 # disable a warning with:
1948 # shellcheck disable=SC2206 # reasoning
1949
1950 # see bash-template/style-guide.md for justifications
1951
1952 local quotes others
1953 quotes=2048,2068,2086,2206
1954 others=2029,2033,2054,2164
1955 shellcheck -W 999 -x -e $quotes,$others "$@" || return $?
1956 }
1957
1958
1959 # sl: ssh, but firsh rsync our bashrc and related files to a special
1960 # directory on the remote host if needed.
1961
1962 # Some environment variables and files need to be setup for this to work
1963 # (mine are set at the beginning of this file)
1964
1965 # SL_FILES_DIR: Environment variable. Path to folder which should at
1966 # least have a .bashrc file or symlink. This dir will be rsynced to ~ on
1967 # remote hosts (top level symlinks are resolved) unless the host already
1968 # has a $SL_FILES_DIR/.bashrc. In that case, we assume it is a host you
1969 # control and sync files to separately and already has the ~/.bashrc you
1970 # want. The remote bash will also take its .inputrc config from this
1971 # folder (default of not existing is fine). Mine looks like this:
1972 # https://iankelling.org/git/?p=distro-setup;a=tree;f=sl/.iank
1973
1974 # SL_INFO_DIR: Environment variable. This folder stores info about what
1975 # we detected on the remote system and when we last synced. It will be created
1976 # if it does not exist. Sometimes you may want to forget about a
1977 # remote system, you can use sl --rsync, or the function for that slr
1978 # below.
1979
1980 # SL_TEST_CMD: Env var. Meant to be used to vary the files synced
1981 # depending on the remote host. Run this string on the remote host the
1982 # first time sl is run (or if we run slr). The result is passed to
1983 # SL_TEST_HOOK. For example,
1984 # export SL_TEST_CMD=". /etc/os-release ; echo \${VERSION//[^a-zA-Z0-9]/}"
1985
1986 # SL_TEST_HOOK: Env var. It is run as $SL_TEST_HOOK. This can set
1987 # $SL_FILES_DIR to vary the files synced.
1988
1989 # SL_RSYNC_ARGS: Env var. String of arguments passed to rsync. For
1990 # example to exclude files within a directory. Note, excluded
1991 # files wont be deleted on rsync, you can add --delete-excluded
1992 # to the rsync command if that is desired.
1993
1994 # SL_SSH_ARGS: Env var. Default arguments passed to ssh.
1995
1996 # For when ~/.bashrc is already customized on the remote server, you
1997 # might find it problematic that ~/.bashrc is sourced for ALL ssh
1998 # commands, even in scripts. This paragraph is all about that. bash
1999 # scripts dont source ~/.bashrc, but call ssh in scripts and you get
2000 # ~/.bashrc. You dont want this. .bashrc is meant for interactive shells
2001 # and if you customize it, probably has bugs from time to time. This is
2002 # bad. Here's how I fix it. I have a special condition to "return" in my
2003 # .bashrc for noninteractive ssh shells (copy that code). Then use this
2004 # function or similar that passes LC_USEBASHRC=t when sshing and I want
2005 # my bashrc. Also, I don't keep most of my bashrc in .bashrc, i source a
2006 # separate file because even if I return early on, the whole file gets
2007 # parsed which can fail if there is a syntax error.
2008 sl() {
2009 # Background on LC_USEBASHRC var (no need to read if you just want to
2010 # use this function): env variables sent across ssh are strictly
2011 # limited, but we get LC_* at least in debian based machines, so we
2012 # just make that * be something no normal program would use. Note, on
2013 # hosts that dont allow LC_* I start an inner shell with LC_USEBASHRC
2014 # set, and the inner shell also allows running a nondefault
2015 # .bashrc. This means the outer shell still ran the default .bashrc,
2016 # but that is the best we can do.
2017
2018 local now args remote dorsync haveinfo tmpa sshinfo tmp tmp2 type info_sec force_rsync \
2019 sync_dirname testcmd extra_info testbool files_sec sl_test_cmd sl_test_hook
2020 declare -a args tmpa
2021
2022 args=($SL_SSH_ARGS)
2023
2024 # ssh [-1246Antivivisectionist] [-b bind_address] [-c cipher_spec] [-D [bind_address:]port]
2025 # [-E log_file] [-e escape_char] [-F configfile] [-I pkcs11] [-i identity_file] [-L address]
2026 # [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port] [-Q query_option]
2027 # [-R address] [-S ctl_path] [-W host:port] [-w local_tun[:remote_tun]] [user@]hostname
2028 # [command]
2029
2030 # ssh [-46AaCfGgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]
2031 # [-D [bind_address:]port] [-E log_file] [-e escape_char]
2032 # [-F configfile] [-I pkcs11] [-i identity_file]
2033 # [-J [user@]host[:port]] [-L address] [-l login_name] [-m mac_spec]
2034 # [-O ctl_cmd] [-o option] [-p port] [-Q query_option] [-R address]
2035 # [-S ctl_path] [-W host:port] [-w local_tun[:remote_tun]]
2036
2037 force_rsync=false
2038 if [[ $1 == --rsync ]]; then
2039 force_rsync=true
2040 shift
2041 fi
2042
2043 sl_test_cmd=$SL_TEST_CMD
2044 sl_test_hook=$SL_TEST_HOOK
2045 sl_rsync_args=$SL_RSYNC_ARGS
2046 while [[ $1 ]]; do
2047 case "$1" in
2048 --rsync)
2049 force_rsync=true
2050 ;;
2051 --sl-test-cmd)
2052 sl_test_cmd="$2"
2053 shift
2054 ;;
2055 --sl-test-hook)
2056 sl_test_hook="$2"
2057 shift
2058 ;;
2059 --sl-rsync-args)
2060 sl_rsync_args="$2"
2061 shift
2062 ;;
2063 *)
2064 break
2065 ;;
2066 esac
2067 shift
2068 done
2069
2070 while [[ $1 ]]; do
2071 case "$1" in
2072 # note we dont support things like -4oOption
2073 -[46AaCfGgKkMNnqsTtVvXxYy]*)
2074 args+=("$1"); shift
2075 ;;
2076 -[bcDEeFIiJLlmOopQRSWw]*)
2077 # -oOption etc is valid
2078 if (( ${#1} >= 3 )); then
2079 args+=("$1"); shift
2080 else
2081 args+=("$1" "$2"); shift 2
2082 fi
2083 ;;
2084 *)
2085 break
2086 ;;
2087 esac
2088 done
2089 remote="$1"
2090 if [[ ! $remote ]]; then
2091 echo $0: error hostname required >&2
2092 return 1
2093 fi
2094 shift
2095
2096 if [[ ! $SL_INFO_DIR ]]; then
2097 echo error: missing '$SL_INFO_DIR' env var >&2
2098 return 1
2099 fi
2100
2101 dorsync=false
2102 haveinfo=false
2103 tmpa=($SL_INFO_DIR/???????????"$remote")
2104 sshinfo=${tmpa[0]}
2105 if [[ -e $sshinfo ]]; then
2106 if $force_rsync; then
2107 rm -f $sshinfo
2108 else
2109 haveinfo=true
2110 fi
2111 fi
2112 if $haveinfo; then
2113 tmp=${sshinfo[0]##*/}
2114 tmp2=${tmp::11}
2115 type=${tmp2: -1}
2116 extra_info=$(cat $sshinfo)
2117 else
2118 # we test for string to know ssh succeeded
2119 testbool="test -e $SL_FILES_DIR/.bashrc -a -L .bashrc -a -v LC_USEBASHRC"
2120 testcmd="if $testbool; then printf y; else printf n; fi"
2121 if ! tmp=$(LC_USEBASHRC=y command ssh "${args[@]}" "$remote" "$testcmd; $sl_test_cmd"); then
2122 echo failed sl test. doing plain ssh -v
2123 command ssh -v "${args[@]}" "$remote"
2124 fi
2125 if [[ $tmp == y* ]]; then
2126 type=a
2127 else
2128 dorsync=true
2129 type=b
2130 fi
2131 extra_info="${tmp:1}"
2132 fi
2133 if [[ $sl_test_hook ]]; then
2134 RSYNC_RSH="ssh ${args[*]}" $sl_test_hook "$extra_info" "$remote"
2135 fi
2136
2137 if $haveinfo && [[ $type == b ]]; then
2138 info_sec=${tmp::10}
2139 read files_sec _ < <(find -L $SL_FILES_DIR -printf "%T@ %p\n" | sort -nr || [[ $? == 141 || ${PIPESTATUS[0]} == 32 ]] )
2140 files_sec=${files_sec%%.*}
2141 if (( files_sec > info_sec )); then
2142 dorsync=true
2143 rm -f $sshinfo
2144 fi
2145 fi
2146
2147 sync_dirname=${SL_FILES_DIR##*/}
2148
2149 if [[ ! $SL_FILES_DIR ]]; then
2150 echo error: missing '$SL_FILES_DIR' env var >&2
2151 return 1
2152 fi
2153
2154 if $dorsync; then
2155 RSYNC_RSH="ssh ${args[*]}" m rsync -rptL --delete $sl_rsync_args $SL_FILES_DIR "$remote":
2156 fi
2157 if $dorsync || ! $haveinfo; then
2158 sshinfo=$SL_INFO_DIR/$EPOCHSECONDS$type"$remote"
2159 [[ -e $SL_INFO_DIR ]] || mkdir -p $SL_INFO_DIR
2160 printf "%s\n" "$extra_info" >$sshinfo
2161 chmod 666 $sshinfo
2162 fi
2163 if [[ $type == b ]]; then
2164 if (( ${#@} )); then
2165 # Theres a couple ways to pass arguments, im not sure whats best,
2166 # but relying on bash 4.4+ escape quoting seems most reliable.
2167 command ssh "${args[@]}" "$remote" \
2168 LC_USEBASHRC=t bash -c '.\ '$sync_dirname'/.bashrc\;"\"\$@\""' bash ${@@Q}
2169 elif [[ ! -t 0 ]]; then
2170 # This case is when commands are being piped to ssh.
2171 # Normally, no bashrc gets sourced.
2172 # But, since we are doing all this, lets source it because we can.
2173 cat <(echo . $sync_dirname/.bashrc) - | command ssh "${args[@]}" "$remote" LC_USEBASHRC=t bash
2174 else
2175 command ssh -t "${args[@]}" "$remote" LC_USEBASHRC=t INPUTRC=$sync_dirname/.inputrc bash --rcfile $sync_dirname/.bashrc
2176 fi
2177 else
2178 if [[ -t 0 ]]; then
2179 LC_USEBASHRC=t command ssh "${args[@]}" "$remote" ${@@Q}
2180 else
2181 command ssh "${args[@]}" "$remote" LC_USEBASHRC=t bash
2182 fi
2183 fi
2184 # this function inspired from https://github.com/Russell91/sshrc
2185 }
2186
2187 slr() {
2188 sl --rsync "$@"
2189 }
2190 sss() { # ssh solo
2191 sl -oControlMaster=no -oControlPath=/ "$@"
2192 }
2193 # kill off old shared socket then ssh
2194 ssk() {
2195 m ssh -O exit "$@" || [[ $? == 255 ]]
2196 m sl "$@"
2197 }
2198 ccomp ssh sl slr sss ssk
2199 # plain ssh
2200 ssh() {
2201 if [[ $TERM == alacritty || $TERM == xterm-kitty ]]; then
2202 TERM=xterm-256color LC_USEBASHRC=t command ssh "$@"
2203 else
2204 LC_USEBASHRC=t command ssh "$@"
2205 fi
2206 }
2207
2208
2209 slog() {
2210 # log with script. timing is $1.t and script is $1.s
2211 # -l to save to ~/typescripts/
2212 # -t to add a timestamp to the filenames
2213 local logdir do_stamp arg_base
2214 (( $# >= 1 )) || { echo "arguments wrong"; return 1; }
2215 logdir="/a/dt/"
2216 do_stamp=false
2217 while getopts "lt" option
2218 do
2219 case $option in
2220 l ) arg_base=$logdir ;;
2221 t ) do_stamp=true ;;
2222 esac
2223 done
2224 shift $((OPTIND - 1))
2225 arg_base+=$1
2226 [[ -e $logdir ]] || mkdir -p $logdir
2227 $do_stamp && arg_base+=$(date +%F.%T%z)
2228 script -t $arg_base.s 2> $arg_base.t
2229 }
2230 splay() { # script replay
2231 #logRoot="$HOME/typescripts/"
2232 #scriptreplay "$logRoot$1.t" "$logRoot$1.s"
2233 scriptreplay "$1.t" "$1.s"
2234 }
2235
2236 sr() {
2237 # sudo redo. be aware, this command may not work right on strange distros or earlier software
2238 if [[ $# == 0 ]]; then
2239 sudo -E bash -c -l "$(history -p '!!')"
2240 else
2241 echo this command redos last history item. no argument is accepted
2242 fi
2243 }
2244
2245 srm () {
2246 # with -ll, less secure but faster.
2247 command srm -ll "$@"
2248 }
2249
2250 srun() {
2251 scp $2 $1:/tmp
2252 ssh $1 /tmp/${2##*/} $(printf "%q\n" "${@:2}")
2253 }
2254
2255
2256 swap() {
2257 local tmp
2258 tmp=$(mktemp)
2259 mv $1 $tmp
2260 mv $2 $1
2261 mv $tmp $2
2262 }
2263
2264 tclock() { # terminal clock
2265 local x
2266 clear
2267 date +%l:%_M
2268 len=60
2269 # this goes to full width
2270 #len=${1:-$((COLUMNS -7))}
2271 x=1
2272 while true; do
2273 if (( x == len )); then
2274 end=true
2275 d="$(date +%l:%_M) "
2276 else
2277 end=false
2278 d=$(date +%l:%M:%_S)
2279 fi
2280 echo -en "\r"
2281 echo -n "$d"
2282 for ((i=0; i<x; i++)); do
2283 if (( i % 6 )); then
2284 echo -n _
2285 else
2286 echo -n .
2287 fi
2288 done
2289 if $end; then
2290 echo
2291 x=1
2292 else
2293 x=$((x+1))
2294 fi
2295 sleep 5
2296 done
2297 }
2298
2299
2300 te() {
2301 # test existence / exists
2302 local ret=0
2303 for x in "$@"; do
2304 [[ -e "$x" || -L "$x" ]] || ret=1
2305 done
2306 return $ret
2307 }
2308
2309 psoff() {
2310 # normally, i would just execute these commands in the function.
2311 # however, DEBUG is not inherited, so we need to run it outside a function.
2312 # And we want to run set -x afterwards to avoid spam, so we cram everything
2313 # in here, and then it will run after this function is done.
2314 PROMPT_COMMAND='trap DEBUG; unset PROMPT_COMMAND; PS1="\w \$ "'
2315 }
2316 pson() {
2317 PROMPT_COMMAND=prompt-command
2318 if [[ $TERM == *(screen*|xterm*|rxvt*) ]]; then
2319 trap 'settitle "$BASH_COMMAND"' DEBUG
2320 fi
2321 }
2322
2323 tx() { # toggle set -x, and the prompt so it doesnt spam
2324 if [[ $- == *x* ]]; then
2325 set +x
2326 pson
2327 else
2328 psoff
2329 fi
2330 }
2331
2332 psnetns() {
2333 # show all processes in the network namespace $1.
2334 # blank entries appear to be subprocesses/threads
2335 local x netns
2336 netns=$1
2337 ps -w | head -n 1
2338 sudo find -L /proc/[1-9]*/task/*/ns/net -samefile /run/netns/$netns | cut -d/ -f5 | \
2339 while read -r l; do
2340 x=$(ps -w --no-headers -p $l);
2341 if [[ $x ]]; then echo "$x"; else echo $l; fi;
2342 done
2343 }
2344 nonet() {
2345 if ! s ip netns list | grep -Fx nonet &>/dev/null; then
2346 s ip netns add nonet
2347 fi
2348 sudo -E env /sbin/ip netns exec nonet sudo -E -u iank /bin/bash
2349 }
2350
2351 m() { printf "%s\n" "$*"; "$@"; }
2352
2353 # update file. note: duplicated in mail-setup
2354 u() {
2355 local tmp tmpdir dest="$1"
2356 local base="${dest##*/}"
2357 local dir="${dest%/*}"
2358 if [[ $dir != "$base" ]]; then
2359 # dest has a directory component
2360 mkdir -p "$dir"
2361 fi
2362 ur=false # u result
2363 tmpdir=$(mktemp -d)
2364 cat >$tmpdir/"$base"
2365 tmp=$(rsync -ic $tmpdir/"$base" "$dest")
2366 if [[ $tmp ]]; then
2367 printf "%s\n" "$tmp"
2368 ur=true
2369 if [[ $dest == /etc/systemd/system/* ]]; then
2370 reload=true
2371 fi
2372 fi
2373 rm -rf $tmpdir
2374 }
2375
2376
2377 uptime() {
2378 if type -p uprecords &>/dev/null; then
2379 uprecords -B
2380 else
2381 command uptime
2382 fi
2383 }
2384
2385 virshrm() {
2386 for x in "$@"; do virsh destroy "$x"; virsh undefine "$x"; done
2387 }
2388
2389 vm-set-listen(){
2390 local t
2391 t=$(mktemp)
2392 local vm=$1
2393 local ip=$2
2394 sudo virsh dumpxml $vm | sed -r "s/(<listen.*address=')([^']+)/\1$ip/" | \
2395 sed -r "s/listen='[^']+/listen='$ip/"> $t
2396 sudo virsh undefine $vm
2397 sudo virsh define $t
2398 }
2399
2400
2401 vmshare() {
2402 vm-set-listen $1 0.0.0.0
2403 }
2404
2405
2406 vmunshare() {
2407 vm-set-listen $1 127.0.0.1
2408 }
2409
2410 myiwscan() {
2411 # find input, copy to pattern space, when we find the first field, print the copy in different order without newlines.
2412 # instead of using labels, we could just match a line and group, eg: /signal:/,{s/signal:(.*)/\1/h}
2413 sudo iw dev wls1 scan | sed -rn "
2414 s/^\Wcapability: (.*)/\1/;Ta;h;b
2415 :a;s/^\Wsignal: -([^.]+).*/\1/;Tb;H;b
2416 # padded to min width of 20
2417 :b;s/\WSSID: (.*)/\1 /;T;s/^(.{20}(.*[^ ])?) */\1/;H;g;s/(.*)\n(.*)\n(.*)/\2 \3 \1/gp;b
2418 "|sort -r
2419 }
2420
2421 # Run script by copying it to a temporary location first,
2422 # and changing directory, so we don't have any open
2423 # directories or files that could cause problems when
2424 # remounting.
2425 zr() {
2426 local tmp
2427 tmp=$(type -p "$1")
2428 if [[ $tmp ]]; then
2429 cd $(mktemp -d)
2430 cp -a "$tmp" .
2431 shift
2432 ./"${tmp##*/}" "$@"
2433 else
2434 "$@"
2435 fi
2436 }
2437
2438
2439 # * spark
2440 # spark 1 5 22 13 53
2441 # # => ▁▁▃▂▇
2442
2443 # The MIT License
2444 # Copyright (c) Zach Holman, https://zachholman.com
2445 # https://github.com/holman/spark
2446
2447 # As of 2022-10-28, I reviewed github forks that had several newer
2448 # commits, none had anything interesting. I did a little refactoring
2449 # mostly to fix emacs indent bug.
2450
2451 # Generates sparklines.
2452 _spark_echo()
2453 {
2454 if [ "X$1" = "X-n" ]; then
2455 shift
2456 printf "%s" "$*"
2457 else
2458 printf "%s\n" "$*"
2459 fi
2460 }
2461
2462
2463 spark()
2464 {
2465 local f tc
2466 local n numbers=
2467
2468 # find min/max values
2469 local min=0xffffffff max=0
2470
2471 for n in ${@//,/ }
2472 do
2473 # on Linux (or with bash4) we could use `printf %.0f $n` here to
2474 # round the number but that doesn't work on OS X (bash3) nor does
2475 # `awk '{printf "%.0f",$1}' <<< $n` work, so just cut it off
2476 n=${n%.*}
2477 (( n < min )) && min=$n
2478 (( n > max )) && max=$n
2479 numbers=$numbers${numbers:+ }$n
2480 done
2481
2482 # print ticks
2483 local ticks=(▁ ▂ ▃ ▄ ▅ ▆ ▇ █)
2484
2485 # use a high tick if data is constant
2486 (( min == max )) && ticks=(▅ ▆)
2487
2488 tc=${#ticks[@]}
2489 f=$(( ( (max-min) <<8)/( tc - 1) ))
2490 (( f < 1 )) && f=1
2491
2492 for n in $numbers
2493 do
2494 _spark_echo -n ${ticks[$(( ((($n-$min)<<8)/$f) ))]}
2495 done
2496 _spark_echo
2497 }
2498
2499
2500 # * misc stuff
2501
2502
2503 if $use_color && type -p tput &>/dev/null; then
2504 term_bold="$(tput bold)"
2505 term_red="$(tput setaf 1)"
2506 term_green="$(tput setaf 2)"
2507 term_yellow="$(tput setaf 3)"
2508 term_purple="$(tput setaf 5)"
2509 term_nocolor="$(tput sgr0)" # no font attributes
2510
2511 # unused so far. commented for shellcheck
2512 # term_underl="$(tput smul)"
2513 # term_blue="$(tput setaf 4)"
2514 # term_cyan="$(tput setaf 6)"
2515 fi
2516 # Try to keep environment pollution down, EPA loves us.
2517 unset safe_term match_lhs use_color
2518
2519 # * prompt
2520
2521
2522 if [[ $- == *i* ]]; then
2523
2524
2525 case $HOSTNAME in
2526 bk|je|li)
2527 if [[ $EUID == 1000 ]]; then
2528 system-status _ ||:
2529 fi
2530 ;;
2531 esac
2532
2533
2534 # this needs to come before next ps1 stuff
2535 # this stuff needs bash 4, feb 2009,
2536 # old enough to no longer condition on $BASH_VERSION anymore
2537 shopt -s autocd
2538 shopt -s dirspell
2539 PS1='\w'
2540 if [[ $- == *i* ]] && [[ ! $LC_INSIDE_EMACS ]]; then
2541 PROMPT_DIRTRIM=2
2542 bind -m vi-command B:shell-backward-word
2543 bind -m vi-command W:shell-forward-word
2544 fi
2545
2546 if [[ $SSH_CLIENT || $SUDO_USER ]]; then
2547 unset PROMPT_DIRTRIM
2548 PS1="\h:$PS1"
2549 fi
2550
2551 # emacs terminal has problems if this runs slowly,
2552 # so I've thrown a bunch of things at the wall to speed it up.
2553 prompt-command() {
2554 local return=$? # this MUST COME FIRST
2555 local ps_char ps_color
2556 unset IFS
2557
2558 if [[ $HISTFILE ]]; then
2559 history -a # save history
2560 fi
2561
2562 case $return in
2563 0) ps_color="$term_purple"
2564 ps_char='\$'
2565 ;;
2566 *) ps_color="$term_green"
2567 ps_char="$return \\$"
2568 ;;
2569 esac
2570 if [[ ! -O . ]]; then # not owner
2571 if [[ -w . ]]; then # writable
2572 ps_color="$term_bold$term_red"
2573 else
2574 ps_color="$term_bold$term_green"
2575 fi
2576 fi
2577
2578 # faster than sourceing the file im guessing
2579 if [[ -e /dev/shm/iank-status && ! -e /tmp/quiet-status ]]; then
2580 eval $(< /dev/shm/iank-status)
2581 fi
2582 if [[ $MAIL_HOST && $MAIL_HOST != "$HOSTNAME" ]]; then
2583 ps_char="@ $ps_char"
2584 fi
2585 jobs_char=
2586 if [[ $(jobs -p) ]]; then
2587 jobs_char='\j '
2588 fi
2589 # We could test if sudo is active with sudo -nv
2590 # but then we get an email and log of lots of failed sudo commands.
2591 # We could turn those off, but seems better not to.
2592 if [[ $EUID != 0 ]] && [[ $DID_SUDO ]]; then
2593 psudo="\[$term_bold$term_red\]s\[$term_nocolor\] "
2594 fi
2595 if [[ ! $HISTFILE ]]; then
2596 ps_char="NOHIST $ps_char"
2597 fi
2598 PS1="${PS1%"${PS1#*[wW]}"} $jobs_char$psudo\[$ps_color\]$ps_char\[$term_nocolor\] "
2599
2600 # set titlebar. instead, using more advanced
2601 # titelbar below
2602 #echo -ne "$_title_escape $HOSTNAME ${PWD/#$HOME/~} \007"
2603 }
2604 PROMPT_COMMAND=prompt-command
2605
2606 if [[ $TERM == screen* ]]; then
2607 _title_escape="\033]..2;"
2608 else
2609 # somme sites recommend this, i dunno what the diff is.
2610 #_title_escape="\033]30;"
2611 _title_escape="\033]0;"
2612 fi
2613
2614 # make the titlebar be the last command and the current directory.
2615 settitle () {
2616
2617
2618 # These are some checks to help ensure we dont set the title at
2619 # times that the debug trap is running other than the case we
2620 # want. Some of them might not be needed.
2621 if (( ${#FUNCNAME[@]} != 1 || ${#BASH_ARGC[@]} != 2 || $BASH_SUBSHELL != 0 )); then
2622 return 0
2623 fi
2624 if [[ $1 == prompt-command ]]; then
2625 return 0
2626 fi
2627 echo -ne "$_title_escape ${PWD/#$HOME/~} "
2628 printf "%s" "$*"
2629 echo -ne "\007"
2630 }
2631
2632 # note, this wont work:
2633 # x=$(mktemp); cp a $x
2634 # I havnt figured out why, bigger fish to fry.
2635 #
2636 # for titlebar.
2637 # condition from the screen man page i think.
2638 # note: duplicated in tx()
2639 if [[ $TERM == *(screen*|xterm*|rxvt*) ]]; then
2640 trap 'settitle "$BASH_COMMAND"' DEBUG
2641 else
2642 trap DEBUG
2643 fi
2644
2645 fi
2646
2647 # * stuff that makes sense to be at the end
2648
2649
2650 # best practice
2651 unset IFS
2652
2653 # shellcheck disable=SC1090
2654 [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
2655
2656 # I had this idea to start a bash shell which would run an initial
2657 # command passed through this env variable, then continue on
2658 # interactively. But the use case I had in mind went away.
2659 #
2660 # if [[ $MY_INIT_CMD ]]; then
2661 # "${MY_INIT_CMD[@]}"
2662 # unset MY_INIT_CMD
2663 # fi
2664
2665 # ensure no bad programs appending to this file will have an affect
2666 return 0