Description: Did you think it was easy? Suppose you needed to open a connection to a remote host from within your perl program. One thing you would probably think of doing at first is the following: open TELNET \"|telnet $hostname\"; print TELNET \"$username \"; print TELNET \"$password \"; ... Unfortunately, if you try this, you\'ll find it doesn\'t work. The telnet program connects to the remote host but it completely ignores any commands you pipe to it. That\'s because the telnet program reads it input...