mirror of
https://github.com/RoboSats/robosats-deploy.git
synced 2025-08-07 18:40:23 +00:00
9 lines
251 B
Bash
9 lines
251 B
Bash
#!/bin/sh
|
|
|
|
filters_external='{"kinds":[38383]}'
|
|
timeout_duration="15s"
|
|
|
|
while IFS= read -r line; do
|
|
timeout "$timeout_duration" /app/strfry --config /etc/strfry.conf sync ${line} --filter "$filters_external" --dir both
|
|
done < /app/external_urls.txt
|