From 9085c8a64a01bf5e94fb0561f06beae324be535c Mon Sep 17 00:00:00 2001 From: Vishal <64505169+vishalxl@users.noreply.github.com> Date: Thu, 29 Dec 2022 02:16:20 +0530 Subject: [PATCH] two new scripts making use of stdin input --- scripts/announce.sh | 6 ++++++ scripts/gotoChannel.sh | 9 +++++++++ 2 files changed, 15 insertions(+) create mode 100644 scripts/announce.sh create mode 100644 scripts/gotoChannel.sh diff --git a/scripts/announce.sh b/scripts/announce.sh new file mode 100644 index 0000000..eb17334 --- /dev/null +++ b/scripts/announce.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +# writes hello to a group + +channel=test99 +{ echo -e "3\n1\n${channel}\nHello, this is a random test.\nx\nx\nx" ; cat /dev/stdin; } | ./nostr_console_ubuntu_x64 --prikey=`openssl rand -hex 32` diff --git a/scripts/gotoChannel.sh b/scripts/gotoChannel.sh new file mode 100644 index 0000000..bf6afa0 --- /dev/null +++ b/scripts/gotoChannel.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +# tested on Linux/Ubuntu +# will go to the channel mentioned in this variable; change it to go to that channel +# arguments passed to this script are passed to the nostr_console + +channel=52ca +{ echo -e "3\n1\n${channel}" ; cat /dev/stdin; } | ./nostr_console_ubuntu_x64 $@ +