in reply to specifying STDIN for backticks
Try the following:
HTH =)#run the perl interpreter and open it's STDIN like a filehandle open PL, "|perl second.pl"; # whatever your loop/control structure is goes here while() { . . #print your input to the "filehandle", this has the effect #of sending your input via STDIN to the script print PL "Something"; . . } close PL;
~CubicSpline
"No one tosses a Dwarf!"
|
|---|