X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=brc;h=33e664616c36487ad7f0b426e6d3c25e303eea3f;hb=313bf2239f766a5a1d060133131b477478873ad7;hp=fe6528acd093ca63a4c9e4674ef63ae5bdaaa774;hpb=2f7b266e782347022b68c5c8e8fbe9292492c343;p=distro-setup diff --git a/brc b/brc index fe6528a..33e6646 100644 --- a/brc +++ b/brc @@ -198,8 +198,10 @@ if [[ -s /usr/share/wcd/wcd-include.sh ]]; then source /usr/share/wcd/wcd-include.sh fi -if [[ -s ~/.iank/ll-function ]]; then - # shellcheck source=.iank/ll-function +if [[ -s /a/bin/small-misc-bash/ll-function ]]; then + # shellcheck source=/a/bin/small-misc-bash/ll-function + source /a/bin/small-misc-bash/ll-function +elif [[ -s ~/.iank/ll-function ]]; then source ~/.iank/ll-function fi @@ -441,6 +443,12 @@ etail() { eless() { less /var/log/exim4/mainlog } +eqcat() { + exiqgrep -i | while read i; do + exim -Mvh $i; hr; exim -Mvb $i; hr; + exigrep $i /var/log/exim4/mainlog; hr + done +} # shellcheck disable=SC2032