[Mono-list] Problem with System.Diagnostics.Process and cat

Will Murnane will.murnane at gmail.com
Mon Jun 23 13:23:36 EDT 2008


On Mon, Jun 23, 2008 at 13:00, snorkel01 <support at amsoftwaredesign.com> wrote:
> /bin/cat: >: No such file or directory /bin/cat:
> /1001/temp/admsfx_23847.exe: No such file or directory
The '>' is shell syntax, not cat syntax, and you're not spawning a
shell.  You need to either spawn a shell which runs cat (expensive) or
just do the concatenation yourself (cheap, fast).

Will


More information about the Mono-list mailing list