mirror of
https://github.com/mempool/mempool.git
synced 2025-02-22 22:25:34 +01:00
7 lines
177 B
Bash
Executable file
7 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 "$2" "$1"
|
|
fi
|
|
done
|