mirror of
https://github.com/mempool/mempool.git
synced 2024-11-19 09:52:14 +01:00
8 lines
177 B
Bash
Executable File
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 "$2" "$1"
|
|
fi
|
|
done
|