rename err to bash-bear
[distro-setup] / prof-tail
1 #!/bin/bash
2 set -e; . /usr/local/lib/bash-bear; set +e
3
4
5 xmpp_users=(
6 anoukr
7 craigt
8 dawnbp
9 devinu
10 gregf
11 johnh
12 jrasata
13 ksiewicz
14 michael
15 miriam
16 ruben
17 zoe
18 jtuttle
19 )
20
21 # start emacs daemon for profanity if it doesnt exist.
22 if ! pgrep -f '^emacs --daemon=profanity$' &>/dev/null; then
23 emacs --daemon=profanity &>/dev/null
24 fi
25
26
27 while true; do
28 midnight=$(date -d '00:00:00 tomorrow' +%s)
29 secs_till_midnight=$(( midnight - EPOCHSECONDS ))
30 log_today=$(date '+%Y_%m_%d').log
31 logdir=/home/iank/.local/share/profanity/chatlogs/iank_at_fsf.org
32
33 # when this fails, it has PIPESTATUS: 124 0 1 0 0, which seems to end up with 1 as the overall code, which is not what
34 # i expected. todo: investigate if and why that is, and narrow the ||:
35 # shellcheck disable=SC2046 # intentional
36 timeout --foreground $secs_till_midnight tail -n0 -qF \
37 $(for u in ${xmpp_users[@]}; do echo $logdir/${u}_at_fsf.org/$log_today; done) 2>/dev/null \
38 | awk '$3 != "me:" {print $3; fflush()}' | sed -u 's/^/pm /;s/@.*//' ||: &
39
40 timeout --foreground $secs_till_midnight tail -n0 -qF \
41 $logdir/rooms/*/$log_today 2>/dev/null \
42 | awk '$3 != "iank:"' | grep -i '\biank\b' | awk '{print $3; fflush()}' | sed 's/^/room /;s/@.*//' ||:
43
44 sleep 1
45
46 done