in reply to Making a perl program look like a regular file on Win32?
You could simply pipe the perl script to it (i.e. perl script.pl | someprog
Or for a more Perlish solution: in the script you could open a pipe to the program open HANDLE "|someprog.exe; and print to that filehandle. Though unless the program is in your PATH, you'll have to use the full path name to the program
|
|---|