Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi, all

I have just found what cause these strange things. It's the command: send "wait"

I wrote some scripts to test it.

proc Login {pass} {
# send the password
}

proc Wait {} {
    expect "*]$*"
    sleep 1
}

proc sendl {message} {
    send "$message\r"
}

spawn ssh xxxxx.xxx.xxx
Login xxxxxxxx
Wait

sendl "cd /somepath/"
Wait
sendl "expect infiniteLoop.exp >/dev/null &"
Wait
***sendl "wait"***
Wait

sendl "TESTTEST"
Wait
sendl "HAHAHA"
Wait
sendl "DONEDONEDONE"
Wait

It should be stuck after the line: sendl "wait"

But the result was:

[xxx@xxxxx.xxx ~]$ cd /somepath/
[xxx@xxxxx.xxx folder]$ expect infiniteLoop.exp >/dev/null &
[1] 27260
[xxx@xxxxx.xxx folder]$ wait
TESTTEST
HAHAHA
DONEDONEDONE
[xxx@xxxxx.xxx folder]$ 

The shell is still waiting, but the follow-up commands has been sent out one by one without any response. All the expect command after that line seems to be invalid. And then the script finished.

I don't know what happened here. What cause expect commands invalid? The command "wait" seems not to be a program( I can't use "whereis wait" find it).

share|improve this question
What are you spawning? (ie. could there be any local echo type stuff going on?) – Niall Byrne Sep 28 '12 at 6:51
thanks for your answer. I finally found what cause this strange problem. It's "wait"! I changed the question now. – user1260771 Sep 28 '12 at 9:19
Your subprocess is running in the background (of the shell it is connected to). That means it's running asynchronously. The shell is now waiting, but your main script is not expect-ing anything, so just continues with the following sendl commands. – Keith Sep 28 '12 at 10:27
The "wait" command is a shell built-in. "wait: wait [id] Wait for job completion and return exit status." – Keith Sep 28 '12 at 10:29
Hi, Keith. I know what you said, but in my understanding, expect command will pause the script until "]$" was found. You say the main script is not expect-ing anything. But the following sendl command could be executed. What causes this? Why expect command is invalid but send command works fine? – user1260771 Sep 28 '12 at 13:04

1 Answer

up vote 0 down vote accepted
[xxx@xxxxx.xxx folder]$ wait
TESTTEST
HAHAHA
DONEDONEDONE

This kind of output is probably caused by expect timeout.

I'm not sure what infiniteLoop.exp is doing. If it's actually an infinite loop(or something taking a long time), the following wait shell command will always wait because the process(infiniteLoop.exp) never terminates.

Therefore, the following Wait() proc invokes will eventually time out after each 10s (10s is Expect default timeout) and the script just continues like:

sendl "TESTTEST"  (send message to spawned process)  
Wait  (process still waiting for infiniteLoop.exp, timeout after 10s.)  
sendl "HAHAHA"  (continue to send message)  
Wait  (process still waiting for infiniteLoop.exp, timeout after 10s.)  
sendl "DONEDONEDONE"  (continue to send message)  

When the Expect script doesn't tun as expected, I always do two things:

  • The first one is to run the procedure manually to check if there is something wrong.

  • The second one is adding -d option to turn on debugging message(ex: expect -d hello.exp). If you see something like "expect: timed out", then the previous pattern is probably failed to match.

BTW, you can add a little check to indicate the timeout case

proc Wait {} {
    expect {
        "$" {}
        timeout {send_user "expect timeout\n"}
    }
    sleep 1
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.