The Linux "copy problem"
The Linux "copy problem"
Posted Jun 2, 2019 12:20 UTC (Sun) by Jandar (subscriber, #85683)In reply to: The Linux "copy problem" by desbma
Parent article: The Linux "copy problem"
> curl -v --compressed 'https://lwn.net/' > /dev/null 2>&1 | grep gzip
This command is obviously without any output.
$ curl -v --compressed 'https://lwn.net/' > /dev/null 2>&1 | wc
0 0 0
Perhaps you meant: curl -v --compressed 'https://lwn.net/' 2>&1 > /dev/null | grep gzip
