1
0

simultaneity, also fix

This commit is contained in:
dtb 2022-11-04 17:05:19 -04:00
parent e5d92f1e09
commit 6f12aa0972

6
rss/pig_feed Normal file → Executable file
View File

@ -1,7 +1,7 @@
#!/bin/sh
for file in $(ls $(pig_pen)); do
pig_latin "$(pig_pen)/$file" \
for file in "$(pig_pen)"/*; do
pig_latin "$file" \
| jq '.feed_url' \
| xargs pig_stow
| xargs pig_stow &
done