mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
8 lines
179 B
Bash
Executable File
8 lines
179 B
Bash
Executable File
#!/bin/sh
|
|
|
|
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
|