forked from wezm/youtube-to-opml
Compare commits
No commits in common. "main" and "main" have entirely different histories.
2 changed files with 3 additions and 2 deletions
3
Makefile
3
Makefile
|
@ -10,7 +10,8 @@ fetch: subscriptions.curl
|
|||
curl --location --output-dir html --create-dirs --rate 1/s --config subscriptions.curl
|
||||
|
||||
channel-json: subscriptions.txt
|
||||
cat subscriptions.txt | xargs -n1 --verbose ./generate-json-opml
|
||||
# nproc is not portable :-/
|
||||
xargs -n1 --max-procs=$$(nproc) --arg-file subscriptions.txt --verbose ./generate-json-opml
|
||||
|
||||
# turn all the channel json files into an OPML file
|
||||
subscriptions.opml:
|
||||
|
|
|
@ -17,4 +17,4 @@ JSON_TITLE=$(json_escape "$TITLE")
|
|||
JSON_XML_URL=$(json_escape "$XML_URL")
|
||||
JSON_URL=$(json_escape "$URL")
|
||||
|
||||
mkdir -p json && printf '{"title": %s, "xmlUrl": %s, "htmlUrl": %s}\n' "$JSON_TITLE" "$JSON_XML_URL" "$JSON_URL" > json/"$NAME".json
|
||||
printf '{"title": %s, "xmlUrl": %s, "htmlUrl": %s}\n' "$JSON_TITLE" "$JSON_XML_URL" "$JSON_URL" > json/"$NAME".json
|
||||
|
|
Loading…
Reference in a new issue