Extract URLs from singlefilez files #159
|
I have bunch of .zip.html files downloaded using singlefilez web extension over the years. |
Answered by
gildas-lormeau
Jul 20, 2023
Replies: 2 comments 1 reply
|
You have to unzip the zip.html files for example with zip.js, see https://github.com/gildas-lormeau/zip.js. The URL can be found in the |
0 replies
|
FYI, here is a simple solution for obtaining the URLs from the command line on Linux/WSL/macOS (with for name in *.zip.html; do echo -n "$name -> "; unzip -p $name manifest.json | jq -r ".originalUrl"; done |
1 reply
Answer selected by
ghbook
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
FYI, here is a simple solution for obtaining the URLs from the command line on Linux/WSL/macOS (with
unzipandjqinstalled):