in reply to Interacting with other programs
If you can do the process from the command line, you should be able to do it with system().
For instance, this command line sequence:
can be executed with system like so:$ grep 'some-pattern' <input-file >output-file
system("grep 'some-pattern' <input-file >output-file") and die "Error +executing grep";
|
|---|