in reply to Re: Another system redirect problem
in thread Another system redirect problem

I think that all the solutions posted (correct me if I'm wrong (again)) are effectively variations on using a pipe and capturing the output into the wanted file.

Neither of my solutions use pipes. They just do output redirection like the shell would.

The other solution given does use a pipe, which means the output isn't going to a file. It is placed in the file by the script which gets it from the pipe.

Replies are listed 'Best First'.
Re^3: Another system redirect problem
by trendle (Novice) on Jul 07, 2011 at 06:10 UTC
    Yes, sorry, you are correct. It's a problem of a little knowledge being not enough to to express myself succinctly. I'm not quite there with IPC utilities yet, they seem a bit intimidating.