From 130b34f43008cac599e14f0dacd961e18ae1b053 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Navr=C3=A1til?= Date: Thu, 1 Aug 2024 15:05:38 +0200 Subject: [PATCH] Syntax fix I was not able to run the previous code, but I'm running bash in Cygwin so it is possible it was a local problem. --- slow-post-all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slow-post-all.sh b/slow-post-all.sh index 3563837..13d3274 100644 --- a/slow-post-all.sh +++ b/slow-post-all.sh @@ -7,5 +7,5 @@ for RELAY in wss://relay.nostrplebs.com wss://relay.nostr.band do echo "Publishing to ${RELAY}" # We can post to different relays in parallel, they don't know about each other - do python3 slow-post.py "${RELAY}" < "${1}";done ) & + python3 slow-post.py "${RELAY}" < "${1}" & done