mirror of
https://github.com/mempool/mempool.git
synced 2025-01-06 05:29:13 +01:00
8 lines
172 B
Plaintext
8 lines
172 B
Plaintext
|
#!/bin/sh
|
||
|
trap "" PIPE
|
||
|
while read input;do
|
||
|
if [ ! -z "${input}" ];then
|
||
|
echo "\`\`\`${input}\`\`\`" | /usr/local/bin/keybase chat send --nonblock mempool.syslog
|
||
|
fi
|
||
|
done
|