我正在使用 bash 脚本登录 telnet 服务器并执行许多命令。看起来像:
登录并运行.sh
#!/bin/bash
unset TELNET_USER_NAME_STRING
unset TELNET_PASSWORD_STRING
unset TELNET_USER_NAME
unset TELNET_PASSWORD
TELNET_USER_NAME_STRING=`cat SAP_output`
TELNET_PASSWORD_STRING="Password:"
TELNET_USER_NAME="UserNam3\r"
TELNET_PASSWORD="Passw0rd\r"
# Expect script starts here
expect <<- DONE
spawn telnet localhost 50008
expect '$TELNET_USER_NAME_STRING'
send "$TELNET_USER_NAME"
sleep 3
expect "$TELNET_PASSWORD_STRING"
send "$TELNET_PASSWORD"
sleep 3
spawn ls
expect eof
DONE
在哪里
SAP_输出:
Trying ::1...
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
***********************************************
**********************************************
****###*******####*****#######**************
**##***##****##**##****##****##************
***##*******##****##***##****##**********
*****##*****########***######***********
******##****##****##***##*************
**##***##**##******##**##************
****###****##******##**##**********
**********************************
********************************
Telnet Administration
SAP Java EE Application Server v7.50
User name:
telnet 登录后,我收到横幅,但它停在那里(就好像字符串不匹配一样)。使用通配符而不是确切的响应(并且仅匹配“用户名:”)会更安全吗?
答案1
弄清楚了:
TELNET_USER_NAME_STRING='*name:*'
TELNET_PASSWORD_STRING='*assword:*'
TELNET_USER_NAME='UserNam3\r'
TELNET_PASSWORD='Passw0rd\r'
# Expect script starts here
expect <<- DONE
spawn telnet localhost 50008
expect '$TELNET_USER_NAME_STRING'
send "$TELNET_USER_NAME"
expect '$TELNET_PASSWORD_STRING'
send "$TELNET_PASSWORD"
# Check if we're logged in
expect eof
DONE
使用通配符而不是完整的横幅并返回行字符“\r”来“按”回车。
编辑:
这是一个更加优雅的答案。