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