Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/expect
- set NAME "Vagner"
- set DE "XFCE"
- set NUMBER [lindex $argv 0]
- spawn ./interactive_script.sh
- expect "Diga seu nome\r"
- send -- "$NAME\r"
- expect "Seu DE favorito?\r"
- send -- "$DE\r"
- expect "Quantos Browsers você tem?\r"
- send -- "$NUMBER\r"
- expect eof
Advertisement