mirror of
https://github.com/vishalxl/nostr_console.git
synced 2025-06-05 12:39:35 +02:00
12 lines
248 B
Bash
12 lines
248 B
Bash
#!/bin/bash
|
|
|
|
source ./configfile.cfg
|
|
|
|
for server in ${nostr_servers[@]};
|
|
do
|
|
>&2 echo -e "\n\n------------Sending $1 to $server---------------------------\n"
|
|
>&2 echo "echo $1 | websocat $server " ;
|
|
echo "$1" | websocat -B 300000 $server
|
|
|
|
done
|