2020-10-13 12:15:44 +02:00
|
|
|
#!/bin/sh
|
|
|
|
trap "" PIPE
|
|
|
|
while read input;do
|
|
|
|
if [ ! -z "${input}" ];then
|
2020-10-13 12:55:29 +02:00
|
|
|
echo "\`\`\`${input}\`\`\` $*" | /usr/local/bin/keybase chat send --nonblock mempool.syslog
|
2020-10-13 12:15:44 +02:00
|
|
|
fi
|
|
|
|
done
|