From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=DKIM_SIGNED,DKIM_VALID autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 13389 invoked from network); 12 Aug 2023 20:14:22 -0000 Received: from 9front.inri.net (168.235.81.73) by inbox.vuxu.org with ESMTPUTF8; 12 Aug 2023 20:14:22 -0000 Received: from pb-smtp1.pobox.com ([64.147.108.70]) by 9front; Sat Aug 12 16:11:35 -0400 2023 Received: from pb-smtp1.pobox.com (unknown [127.0.0.1]) by pb-smtp1.pobox.com (Postfix) with ESMTP id A185D1AF0B9 for <9front@9front.org>; Sat, 12 Aug 2023 16:11:33 -0400 (EDT) (envelope-from unobe@cpan.org) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=pobox.com; h=message-id :to:subject:date:from:in-reply-to:mime-version:content-type :content-transfer-encoding; s=sasl; bh=CVwz7iGS8AGjf/QuAW8V5E5wf sbUvw7VitlHPTQSlo8=; b=FdifJji+hJQ+6beElfal4yam4ATa8tkh4dAeNYYXn klSHyiO6K6k0PQrkFy/q+EX7KUYYUIvnf1In131bZ9gUfMbpzBZJ+eUXusXXyACC WyARo2Q0+fsbrny103O7OYnCbUIiwGRE2OK9Vjuf+5XVhsflI9q/USz4mf+EqwNz N4= Received: from pb-smtp1.nyi.icgroup.com (unknown [127.0.0.1]) by pb-smtp1.pobox.com (Postfix) with ESMTP id 9A9541AF0B8 for <9front@9front.org>; Sat, 12 Aug 2023 16:11:33 -0400 (EDT) (envelope-from unobe@cpan.org) Received: from strider.localdomain (unknown [97.131.109.8]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pb-smtp1.pobox.com (Postfix) with ESMTPSA id D735A1AF0B6 for <9front@9front.org>; Sat, 12 Aug 2023 16:11:32 -0400 (EDT) (envelope-from unobe@cpan.org) Message-ID: <63BEDBC57594C2704200EACFF42D592A@smtp.pobox.com> To: 9front@9front.org Date: Sat, 12 Aug 2023 13:11:30 -0700 From: unobe@cpan.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Pobox-Relay-ID: 6E8A59BA-394C-11EE-9F90-C65BE52EC81B-09620299!pb-smtp1.pobox.com List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: distributed grid deep-learning solution Subject: Re: [9front] PATCH walk(1) to (optionally) quote name and path Reply-To: 9front@9front.org Precedence: bulk Quoth hiro <23hiro@gmail.com>: > > 'Desktop/Movies/TV/TV Library.tvlibrary'/'Library Preferences.tvdb' > > > 'Desktop/Movies/TV/TV Library.tvlibrary/Library Preferences.tvdb' > > what about > > Desktop/Movies/TV/'TV Library.tvlibrary'/'Library Preferences.tvdb' The directory is processed at one time, so without a more significant refactoring, I don't see how that would be possible. For reference, ls(1) does this: cpu% ls Desktop/Movies/TV/'TV Library.tvlibrary'/'Library Preferences.tvdb' 'Desktop/Movies/TV/TV Library.tvlibrary/Library Preferences.tvdb' cpu% So the latest commit I did matches that output.