#!/usr/bin/expect -f
# https://help.apple.com/itc/transporteruserguide/#/apdAbeb95d60
set timeout 300
spawn ./iTMSTransporter_installer.sh
expect "APPLE, INC."
send -- "q"
sleep 1
send -- "yes\n"
sleep 1
send -- "yes\n"
expect eof
