HI, I wanted to kill a process INETD by code:by hand in the cygwin bash i tried this: ps |awk '/INETD/{print $1}'|xargs kill and it works, now i wanted to do it by Perl code: I tried: system(" c:\\cygwin\\bin\\bash.exe('ps |awk '/INETD$/{print $1}|xargs kill')") or system("c:\\cygwin\\bin\\ps.exe |c:\\cygwin\\bin\\awk.exe '/INETD/{print $1}'|c:\\cygwin\\bin\\xargs.exe c:/cygwin/bin/kill.exe");
neither by replacing \\ by /. But didn't work why? thanks. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]