in reply to Shell Commands executed in perl script

IMHO
Some time ago , I was using perl system command to execute shell commands , something similar to what you are doing, grep and awk, i found out that I can do that much more efficiently and faster using perl itself -regex rather than spawning subprocesses .
Sharad
  • Comment on Re: Shell Commands executed in perl script

Replies are listed 'Best First'.
Re^2: Shell Commands executed in perl script
by Anonymous Monk on Dec 18, 2007 at 16:59 UTC
    my question is plain and simple. Is it possible to execute awk command inside perl script???