Re: [PHP] question about using temporary named pipe in the string for system

2006-05-11 Thread Robin Vickery
On 11/05/06, Jochem Maas <[EMAIL PROTECTED]> wrote: Ginger Cheng wrote: > Hello, PHP gurus, > I have a command that I want to run using system function. The > command exploits temporary named pipes in the place of temporary files. > my command is > paste <(cut -f1 file1) <(c

Re: [PHP] question about using temporary named pipe in the string for system

2006-05-10 Thread Jochem Maas
Ginger Cheng wrote: Hello, PHP gurus, I have a command that I want to run using system function. The command exploits temporary named pipes in the place of temporary files. my command is paste <(cut -f1 file1) <(cut -f2 file2)> final_file It works perfectly

Re: [PHP] question about using temporary named pipe in the string for system

2006-05-10 Thread Joe Henry
On Wednesday 10 May 2006 4:02 pm, Ginger Cheng wrote: > Hello, PHP gurus, > I have a command that I want to run using system function. The > command exploits temporary named pipes in the place of temporary files. > >my command is > > paste <(cut -f1 file1) <(cut -f2 file2)

[PHP] question about using temporary named pipe in the string for system

2006-05-10 Thread Ginger Cheng
Hello, PHP gurus, I have a command that I want to run using system function. The command exploits temporary named pipes in the place of temporary files. my command is paste <(cut -f1 file1) <(cut -f2 file2)> final_file It works perfectly well if I just t