Hongyi Zhao writes: > On Wed, Feb 3, 2021 at 6:23 AM Eric Wong <e@xxxxxxxxx> wrote: >> >> You can get all the messages sent to you in gzipped mboxrd >> format via: >> >> curl -sSf -d '' 'https://lore.kernel.org/git/?q=tc:hongyi&x=m' >mboxrd.gz >> >> And public-inbox.org/git still exists for redundancy and dogfooding: >> >> curl -sSf -d '' 'https://public-inbox.org/git/?q=tc:hongyi&x=m' >mboxrd.gz > > Thank you for telling me this. But why the content can't be directly > print on the stdout as shown below: > > werner@X10DAi:~$ curl -sSf -d '' 'https://lore.kernel.org/git/?q=tc:hongyi&x=m' > werner@X10DAi:~$ curl -sSf -d '' 'https://public-inbox.org/git/?q=tc:hongyi&x=m' > werner@X10DAi:~$ > > As you can see, nothing is shown to me. It's gzip compressed. Try something like this instead: $ curl -sSf -d '' 'https://lore.kernel.org/git/?q=tc:hongyi&x=m' | zless