in reply to Can't get $ from Net::Telnet

Lose the quotes in line 11, print @vacation_string, $/; They are making perl try to interpolate $SUBJECT as a variable, as well as inserting $" (default, a space) between each array element.

After Compline,
Zaxo

Replies are listed 'Best First'.
Re: Re: Can't get $ from Net::Telnet
by JoeJaz (Monk) on Jun 27, 2003 at 14:39 UTC
    Thanks for the info regarding perl's behavior. I have made the appropriate changes to my code.
    Joe