Hi guys, Got past the first hurdle. The next question may be simple but it's late and I can't think what to do so... In a bash script, I need to redirect the STDOUT of an eval'ed program back into the STDIN of my script. An example that _doesn't_ work: ------------------------- #! /bin/bash # my_bash_script.sh
eval perl perl_script.pl >&0 & read $perl_script_output carry on.... ------------------------- I can't figure out what the redirection operators need to be to get this to work. Any ideas? Thanks, Daniel
