Skip to main content
alternative syntax
Source Link
mykhal
  • 3.3k
  • 2
  • 19
  • 17

I have found a solution (one of the possible ones), it's using openssl:

$ openssl zlib -d < /tmp/data
...

or

$ openssl zlib -d -in /tmp/data

*NOTE: zlib functionality is apparently available in recent openssl versions >=1.0.0 (OpenSSL has to be configured/built with zlib or zlib-dynamic option, the latter is default)

I have found a solution (one of the possible ones), it's using openssl:

$ openssl zlib -d < /tmp/data
...

*NOTE: zlib functionality is apparently available in recent openssl versions >=1.0.0 (OpenSSL has to be configured/built with zlib or zlib-dynamic option, the latter is default)

I have found a solution (one of the possible ones), it's using openssl:

$ openssl zlib -d < /tmp/data

or

$ openssl zlib -d -in /tmp/data

*NOTE: zlib functionality is apparently available in recent openssl versions >=1.0.0 (OpenSSL has to be configured/built with zlib or zlib-dynamic option, the latter is default)

I have found a solution (one of the possible ones), it's using openssl:

$ cat /tmp/data | openssl zlib -d < /tmp/data
...

*NOTE: zlib functionality is apparently available in recent openssl versions >=1.0.0 (OpenSSL has to be configured/built with zlib or zlib-dynamic option, the latter is default)

I have found a solution (one of the possible ones), it's using openssl:

$ cat /tmp/data | openssl zlib -d
...

*NOTE: zlib functionality is apparently available in recent openssl versions >=1.0.0 (OpenSSL has to be configured/built with zlib or zlib-dynamic option, the latter is default)

I have found a solution (one of the possible ones), it's using openssl:

$ openssl zlib -d < /tmp/data
...

*NOTE: zlib functionality is apparently available in recent openssl versions >=1.0.0 (OpenSSL has to be configured/built with zlib or zlib-dynamic option, the latter is default)

don't mention that zlib library has to be availeble, since it is obvious; reformulate
Source Link
mykhal
  • 3.3k
  • 2
  • 19
  • 17

I have found a solution (one of the possible ones), it's using openssl:

$ cat /tmp/data | openssl zlib -d
...

*NOTE: the zlib functionality is apparently available in recent openssl versions >=1.0.0

But only if openssl was installed using the option .(OpenSSL has to be configured/configurebuilt with zlib (while the or zlib library was available-dynamic option, the latter is default).

I have found a solution (one of the possible ones), it's using openssl:

$ cat /tmp/data | openssl zlib -d
...

*NOTE: the zlib functionality is apparently available in recent openssl versions >=1.0.0

But only if openssl was installed using the option ./configure zlib (while the zlib library was available).

I have found a solution (one of the possible ones), it's using openssl:

$ cat /tmp/data | openssl zlib -d
...

*NOTE: zlib functionality is apparently available in recent openssl versions >=1.0.0 (OpenSSL has to be configured/built with zlib or zlib-dynamic option, the latter is default)

Added required installation option for openssl
Source Link
jasonwryan
  • 73.5k
  • 34
  • 199
  • 227
Loading
Post Migrated Here from stackoverflow.com (revisions)
Source Link
mykhal
  • 3.3k
  • 2
  • 19
  • 17
Loading