mirror of
https://github.com/mempool/mempool.git
synced 2025-01-01 03:04:27 +01:00
8 lines
175 B
Bash
Executable File
8 lines
175 B
Bash
Executable File
#!/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
|