in reply to system call works on *nix not NT
If you posting is exactly what you type, could this be the be the answer?perl -e 'system("dir")' #failed perl -e 'system(\"dir\")' #failed perl -e system("dir") #worked perl -e system(\"dir\") #worked
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: system call works on *nix not NT
by beable (Friar) on Jul 01, 2004 at 22:13 UTC |