Extract URLs from singlefilez files #159
-
I have bunch of .zip.html files downloaded using singlefilez web extension over the years. |
Beta Was this translation helpful? Give feedback.
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 |
Beta Was this translation helpful? Give feedback.
-
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 |
Beta Was this translation helpful? Give feedback.
FYI, here is a simple solution for obtaining the URLs from the command line on Linux/WSL/macOS (with
unzip
andjq
installed):