简体   繁体   中英

TCL expect regular expression


I am trying to write one script which climbs up from one system to another through TCL/Expect. It is working for me. I need a regular expression in which expect "$ " and expect "# " is combined , so that any system with any prompt in the path can be included.

#!/usr/bin/expect
# Using ssh from expect

log_user 0
spawn ssh test@192.168.2.24
expect "sword: "
send "test\r"
expect "$ "
send "ssh beta\r"
expect "# "
send "uptime\r"
expect "# "

set igot $expect_out(buffer)
puts $igot

Use this:

expect -re {[$#] }

The keys to this are: add the -re flag so that we can match an RE, and put the RE in {braces} so that it doesn't get substituted.

A more generic solution:

set prompt "(%|#|\\\$) $"
expect -re $prompt

This one matches % , # and $ .
The second dollar sign ensures matching the pattern only at the end of input.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM