shell script to autologin into a telnet session
I've been using the following ftp script to login to a remote server.
/usr/bin/ftp -n server name <<EOF
user username password
get remote server path local server path
put local server path remote server path
EOF
I would also like to autologin into telnet as well.
Is that possible? A detailed explanation would be appreciated. Thanks
|