From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: Date: Mon, 18 Dec 2006 10:23:56 -0500 From: "Russ Cox" To: "Fans of the OS Plan 9 from Bell Labs" <9fans@cse.psu.edu> Subject: Re: [9fans] silly rc quoting question In-Reply-To: <6aa931133474a170f86e9a21a83d36d2@coraid.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <6aa931133474a170f86e9a21a83d36d2@coraid.com> Topicbox-Message-UUID: f649fcc0-ead1-11e9-9d60-3106f5b1d025 If you know that the output file is correctly quoted, like the output of ls, then you can turn it into a shell script and then pass it to rc. For example: fn x { echo $1 } . <{ls | sed 's/^/x /'} Russ