Files
AndroidDotnetDocker/tools/android-accept-licenses.sh
2025-03-23 22:48:13 -05:00

15 lines
186 B
Bash
Executable File

#!/usr/bin/expect -f
set timeout 1800
set cmd [lindex $argv 0]
set licenses [lindex $argv 1]
spawn {*}$cmd
expect {
"(y/N)" {
exp_send "y\r"
exp_continue
}
eof
}