From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3929 invoked by alias); 25 Jan 2014 11:58:59 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 18363 Received: (qmail 22307 invoked from network); 25 Jan 2014 11:58:54 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HTML_MESSAGE autolearn=ham version=3.3.2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=bunkus.org; s=mail2014010101; t=1390650690; bh=OZNIpKA87RG0IkJTdXW18jZgM4XaZyQJ1sewUYwsrzY=; h=In-Reply-To:References:Date:Subject:From:To; b=FtM0QWujVNf2TuzKjUJVFYkTHBC/dd/Kc+CDRpICRqoDWZ8ERzK3L7zY1V/459hdV rkJcfvCvjhyyAkd6OyA/oDrGrS7ymb5m/yjQ1XKDhRPPVBl0Q2f0nbcM2WYSdO0f3Z SMf3RZZhgpn7cgBY6pKU3bYHOJDjhra1lZRROBAA= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=OZNIpKA87RG0IkJTdXW18jZgM4XaZyQJ1sewUYwsrzY=; b=jg6pH2jtcGcY076/PTn5R3IDQ9GF9jGj47xBq/FmnEzx5mmeGD5PIp3pS9d05V0Qy1 /ySnOuJhFOhvR1gXniVgruHb/AXdLeQOZSI6KlZ2X8x5yDLgZB214eFb9VhUy3AtZyqg 1pZ1ZjIjcKpwp5DosftT99NkG1SoABUrcFeCbG3C5hHjwGIYvDDmkymBMN4GPAHNH39A r8GFzkwhbvvWH8cNh0ZWvG/2jmRCAgepEw9/+sCjOq2mYAGNeHxx8G7El4nIpD0Tf8CA ejxcCrCI4a2r8/vVEe8XzhnMqwkH1ZPmckiTENgTNbPiHgV+usfiwNO8hHyqWhrzT9Rk Z9pQ== MIME-Version: 1.0 X-Received: by 10.68.244.229 with SMTP id xj5mr3831142pbc.108.1390650688347; Sat, 25 Jan 2014 03:51:28 -0800 (PST) In-Reply-To: <20140125110742.GA2482@localhost.localdomain> References: <20140125055411.GA3794@solfire> <20140125110742.GA2482@localhost.localdomain> Date: Sat, 25 Jan 2014 12:51:28 +0100 Message-ID: Subject: Re: "ls" output like find ... -print0 anyhow ??? From: Moritz Bunkus To: "zsh-users@zsh.org" Content-Type: multipart/alternative; boundary=047d7b2e07e34926a804f0ca18e3 --047d7b2e07e34926a804f0ca18e3 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hey, another option is to let xargs separate on newlines instead of spaces with its =C2=BB--delimiter=C2=AB option. That way you can still use ls: [0 mosu@sweet-chili ~/tmp] ls | xargs -d '\n' ls -l -rw-rw-r-- 1 mosu vj 0 25. Jan 12:50 Another file with spaces.txt -rw-rw-r-- 1 mosu vj 0 25. Jan 12:50 Hello World.txt Kind regards, mosu =E2=80=8B --047d7b2e07e34926a804f0ca18e3--