in reply to Passing Array to seperate file
Do you want the first script to run the second script? Or would having them run by an external process work? The Windows NT/2000/XP command shell will do pipes.
The advantage of the first script writing to stdout, and the second script reading from stdin, is that you can do different combinations:command1 | command2
command1 > output.yml command2 < output.yml
|
|---|