I have a perl script calling an Expect script and want to pass a parameter from the Perl to the Expect but cannot.
The perl script calls the Expect with:
- system "./verify_findmissing.exp $host" -
and the Expect starts with with:
- spawn "/usr/bin/telnet" $host -
I've tried variations on use of the $host varialbe but can't seem to get it right.
I know it's something simple but it sure is driving me crazy!!
Thanks for any help...Scott