summarylogtreecommitdiffstats
path: root/install.sh
blob: 762f5fa2e8654795c9c5febdf763c42e490dbaa8 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/expect -f

set timeout -1

spawn {*}$argv

expect "Proceed? (Yes/No)" { send "Yes\n" }
expect "(Yes/No)" { send "No\n" }
expect "Press any key to exit (or wait 30 seconds)" { send "\n" }