mirror of
https://github.com/RoboSats/robosats-nostr-sync.git
synced 2025-07-30 06:31:42 +00:00
10 lines
188 B
Bash
10 lines
188 B
Bash
#!/bin/sh
|
|
|
|
cd /app
|
|
|
|
filters='{"kinds":[38383]}'
|
|
|
|
while IFS= read -r line; do
|
|
/app/strfry --config /etc/strfry.conf sync ${line} --filter "$filters" --dir both
|
|
done < /app/onion_urls.txt
|