Skip to content

Extract URLs from singlefilez files #159

Answered by gildas-lormeau
ghbook asked this question in Q&A
Discussion options

You must be logged in to vote

FYI, here is a simple solution for obtaining the URLs from the command line on Linux/WSL/macOS (with unzip and jq installed):

for name in *.zip.html; do echo -n "$name -> "; unzip -p $name manifest.json | jq -r ".originalUrl"; done

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@ghbook
Comment options

Answer selected by ghbook
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #158 on July 20, 2023 19:48.