Posted to tcl by c0rnel at Tue Feb 19 12:30:09 GMT 2013view raw
- expect {
- "assword:" {send $UPASS\r}
- timeout {puts "too slow!"; exit}
- puts "logged in";
- expect {
- " $UNAME:" {
- puts "got ' $UNAME:'"
- send "$UPASS\r"
- }
- timeout {
- puts "got timeout"
- exit 2
- }
- eof {
- puts "ssh has exited"
- }
- }
- }