in reply to Re: code problems
in thread code problems

Thank you very much for the system sugestion, but now i have a problem: i put the command in this way and it doesn't print anything: system("rsh xxx.aaa.yyy. 'source.login; find -p AXY -D | sort -c | bugval -a %a a'")! If I write system("rsh aaa.xxx.yyy") It's ok, i can connect! But i want to print the data so i write the entire command but it's error! Thanks for helping me again!

Replies are listed 'Best First'.
Re: Re: Re: code problems
by bory (Beadle) on Sep 04, 2003 at 12:00 UTC
    Hi! I found how to do this : my $results=qx(rsh xxx.aaa.yyy. 'source.login; find -p AXY -D | sort -c | bugval -a %a a') and then in the script I put print "$results"; after print "Content-type:txt/html\n\n" Thank you!!!