Files
mempool/production/mempool-logger
2021-08-21 15:19:29 +09:00

8 lines
177 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 --channel "$1" "$2"
fi
done