From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-3.9 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_BLOCKED, SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by dcvr.yhbt.net (Postfix) with ESMTP id 24F501F4B4 for ; Wed, 3 Feb 2021 00:41:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232457AbhBCAgy (ORCPT ); Tue, 2 Feb 2021 19:36:54 -0500 Received: from dcvr.yhbt.net ([64.71.152.64]:42666 "EHLO dcvr.yhbt.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232354AbhBCAgy (ORCPT ); Tue, 2 Feb 2021 19:36:54 -0500 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 311C41F4B4; Wed, 3 Feb 2021 00:36:13 +0000 (UTC) Date: Wed, 3 Feb 2021 00:36:13 +0000 From: Eric Wong To: Hongyi Zhao Cc: Jeff King , Junio C Hamano , git@vger.kernel.org Subject: Re: Only receive the topics I participated in or initiated on this mailing list. Message-ID: <20210203003612.GA22793@dcvr> References: <20210202222339.GA20119@dcvr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Hongyi Zhao wrote: > 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. Oops, leaving out '-s' for curl would've shown you the error. It's gzipped for bandwidth + I/O savings and truncation checking), so you can pipe it to zcat or "pigz -dc": curl -Sf -d '' 'https://public-inbox.org/git/?q=tc:hongyi&x=m' | zcat