in reply to Re: Redirect file write from external program to STDOUT
in thread Redirect file write from external program to STDOUT
Normally you would do:
prompt> program.exe script.file
And the program.exe writes a jpeg file. script.file contains the instruction. `echo $script | $program` is simply another way to do it without physically a script.file.
Thanks.