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