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.2 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_NONE,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from out1.migadu.com (out1.migadu.com [IPv6:2001:41d0:2:863f::]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 225B01F4B4 for ; Thu, 4 Feb 2021 03:46:43 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kyleam.com; s=key1; t=1612410400; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=+yGQPpdQHLDbudtTvg0U5MzWpGQvhgT4145geJ/D2OI=; b=Geu9WDNh+pccw9yqYRNrwVbIOTLwozSkM7wJZ/9ihaDHIUPKW3SWrFIQyq4aDGJuTBL+46 zMmKwaOB15r/oblFNxAC/pEtJGJxbQgSO7QiXqHvBgEnUQWPEGJ7nKagXinS9Ghn8k9EDE WArLZq1TTvjLglsQ9G/SAdkeo14lAmwfVOybiHSdaQhatmhMj3f4c0eRWYm07BMCDsb76B bH5BMcERQ64t+bH9vGg/A+uE73w6q6IPjgbbKwUAmMXTpia1O9/DX4kq5CSQi7UXToTFWQ PtXS2ZhS4l+4gqOcsLx26yXv3DtQZjAzvh8BAEwAFF97HkQey67/0UTTZyalPA== From: Kyle Meyer To: meta@public-inbox.org Subject: Re: [PATCH 1/2] www: call curl with -d '' in the altid instructions In-Reply-To: <20210204025446.22223-2-kyle@kyleam.com> References: <20210204025446.22223-1-kyle@kyleam.com> <20210204025446.22223-2-kyle@kyleam.com> Date: Wed, 03 Feb 2021 22:46:37 -0500 Message-ID: <87zh0kwl42.fsf@kyleam.com> MIME-Version: 1.0 Content-Type: text/plain X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: kyle@kyleam.com List-Id: Kyle Meyer writes: > - curl -XPOST $url | \\ > + curl -d '' $url | \\ > gzip -dc | \\ > sqlite3 /path/to/$altid_pfx.sqlite3 Ah, I didn't note the '|' alignment here. I suppose the last two lines should be shifted left by one character to restore that style.