Expect doesn't recognize a password prompt


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Expect doesn't recognize a password prompt
# 1  
Old 03-06-2012
Expect doesn't recognize a password prompt

Hi.
Here is beginning of my script
Code:
#!/usr/local/bin/expect --
set timeout 15
spawn /usr/local/account.sh -n modify
expect "Password:" {send "mypassword\r"}

But due to some terminal control sequences (or something else, dunno exactly) my password prompt is looking like this:
Code:
[[61;157R-n Password:

and expect doesn't recognize it. I tried to use "expect -re" instead of "expect" but no luck. Pls help. OS - Solaris 8
# 2  
Old 03-06-2012
You may want to try autoexpect to find out how to "expect" the password prompt - autoexpect. This comes with the expect installation.
# 3  
Old 03-06-2012
Thanks, this is helpful, but i'd like to get assisted with regexp composing rather then get solution for particular case from autoexpect.
# 4  
Old 03-11-2012
Pls help me with regexp. Autoexpect-generated sample looks pretty weird and is not working for me
Code:
expect -exact "sh: /usr/local/bin/stty: not found\r
[r[999;999H[6n"
send -- "[61;157R"
[r[999;999H[6n"
send -- "[61;157R"
-n Password: \r
"

Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. IP Networking

DNS problem : ping doesn't recognize hostname

I have vmware on my windows PC ( hostname : acer ). vmware has RHEL 7 ( hostname : rhel7 ) installed recently. RHEL IP configuration IP : 192.168.5.128 Netmask : 255.255.255.0 ssh to rhel7 works from acer using putty resolve.conf cat /etc/resolv.conf nameserver 192.168.5.1 host... (12 Replies)
Discussion started by: hiten.r.chauhan
12 Replies

2. Shell Programming and Scripting

Expect script not expecting the password prompt

I have a script that does an SSH into a remote node. It should expect the prompt and send the password. #!/usr/bin/expect set user ; set pass ; spawn ssh $user@E-Internal expect { -re "RSA key fingerprint" {send "yes\r"} timeout... (1 Reply)
Discussion started by: Junaid Subhani
1 Replies

3. Shell Programming and Scripting

Using expect doesn't preserve the stderr

Hello, I am performing the follwing line from a unix server: expect -c 'spawn ssh otherHost chown -R user:group /usr ; expect password: ; send 123456\n ; interact ;' I am getting return value 0, an empty stderr and a stdout that says "/usr/... Not owner, /usr/... Not Owner ..". If I... (2 Replies)
Discussion started by: lastZenMaster
2 Replies

4. Shell Programming and Scripting

Value of variable is NULL, but test doesn't seem to recognize

Hello, Unix-forums! My problem: read -p "Enter any number, please" number sleep 1 echo $number | tr -d 0-9 test -z $number && echo "Thank you" || echo "This is not a number"Test always displays "This is not a number". It doesn't matter if I entered a or 1. But if I order echo... (2 Replies)
Discussion started by: intelinside
2 Replies

5. Solaris

Expired password doesn't prompt for change

I'm on a Solaris 8 box that is not prompting users to change their password after it has expired. I have an older Solaris 8 box that does. We're accessing both via ssh. We have recently built the box that doesn't prompt from scratch. Obviously, we've overlooked something but we don't know what.... (2 Replies)
Discussion started by: mark24p
2 Replies

6. HP-UX

HP-UX 11.11: X doesn't recognize mouse and keyboard

hi folks, i've got a blank hp visualize C3000 workstation and installed HP-UX 11.11. When I want to start X, I get the following error message: # X Fatal server error: Couldn't open X pointer device! Is one attached? I've connected an mouse and a keyboard with an usb/ps2 connector.... (5 Replies)
Discussion started by: grisu
5 Replies

7. UNIX for Advanced & Expert Users

user prompt doesn't pop up with rsh command

Hello All, I'm trying to run some script on other host by using rsh command. This script asking for user id which follows by password requisition. The problem which I faced is that the user requisition prompt never appear. It look like the script is running and wait for the user id to be... (1 Reply)
Discussion started by: ronenalalush
1 Replies

8. Shell Programming and Scripting

Doesn't recognize the mv command

I'm nearly finished my program i've got everything in place and than when i run it it comes back with the reply mv: command not found. This is the code that seems to be causing the problem. elif then echo "There are more than one '$1' files in the system." echo "Please... (2 Replies)
Discussion started by: zoolz
2 Replies

9. Solaris

correct method to recognize new external DAT drives? and a technical {ok} prompt?

yesterday I attached my external HPsurestore DAT drives to my v440 boxes. one one box, I did a "boot -r" on the other, I did a "drvconfig -vC" the drvconfig was nice, as I didn't have to bounce the box...both systems now recognize associated DAT drives :D I was wondering if these are the... (1 Reply)
Discussion started by: mr_manny
1 Replies
Login or Register to Ask a Question