in reply to Re: Uncompress streaming gzip on the fly in LWP::UserAgent/WWW::Mechanize
in thread Solved: Uncompress streaming gzip on the fly in LWP::UserAgent/WWW::Mechanize

"On a side note, do infinite streams of (gzip) compressed data exist?"
If you need one:
$ gzip -f - </dev/urandom
  • Comment on Re^2: Uncompress streaming gzip on the fly in LWP::UserAgent/WWW::Mechanize
  • Download Code

Replies are listed 'Best First'.
Re^3: Uncompress streaming gzip on the fly in LWP::UserAgent/WWW::Mechanize
by bliako (Abbot) on Dec 19, 2018 at 23:30 UTC

    Thanks! Second question: does than unzip (before the end of time)?

      warning, makes "lotsafiles"
      $ mkdir lotsafiles $ cd lotsafiles $ gzip -f - </dev/urandom | gunzip | split -b 1024 & $ ls