Russ Cox Mon, 18 Dec 2006 07:26:47 -0800
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