2014-09-18 01:12:55 +05:30
|
|
|
#!/usr/bin/expect
|
|
|
|
|
|
|
|
set timeout 2
|
2023-02-08 08:42:59 +05:30
|
|
|
expect_after default {puts stderr "\nFAIL"; exit 1}
|
2014-09-18 01:12:55 +05:30
|
|
|
|
|
|
|
spawn /bin/bash
|
|
|
|
expect "# "
|
|
|
|
|
|
|
|
send "login myuser\r"
|
|
|
|
expect "Password: "
|
|
|
|
send "myuserF00barbaz\r"
|
|
|
|
expect "$ "
|
|
|
|
|
|
|
|
send "id\r"
|
|
|
|
expect "uid=424242(myuser) gid=424242(myuser) groups=424242(myuser)\r"
|
|
|
|
expect "$ "
|
|
|
|
send "exit\r"
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
|