Guest User

Untitled

a guest
May 26th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #!/usr/bin/expect --
  2. set timeout 30
  3. spawn ./some.bin
  4. expect {
  5. "More--" {
  6. send "q"
  7. } "yes/no?" {
  8. send "yes\r"
  9. } timeout {
  10. exit
  11. } eof {
  12. exit
  13. }
  14. }
Add Comment
Please, Sign In to add comment