自动输入用户密码telnet小程序。。。
时间:2006-06-22 来源:gyh9711
#不严谨程序,偶尔还是有点作用
保存为文件名:atuotel.sh
#!/bin/bash
#自动登录程序
sleep 3
echo "username" //用户名
sleep 2
echo "password" //密码
while true
do
read command
if [ $command == "outprogram" ]; then //outprogram为退出程序字符串
echo "exit"
sleep 2
exit
fi
echo $command
done
执行格式:
#atuotel.sh | telnet xxx.xxx.xx.xx
保存为文件名:atuotel.sh
#!/bin/bash
#自动登录程序
sleep 3
echo "username" //用户名
sleep 2
echo "password" //密码
while true
do
read command
if [ $command == "outprogram" ]; then //outprogram为退出程序字符串
echo "exit"
sleep 2
exit
fi
echo $command
done
执行格式:
#atuotel.sh | telnet xxx.xxx.xx.xx
相关阅读 更多 +