mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
10 lines
126 B
Elixir
Executable File
10 lines
126 B
Elixir
Executable File
#!/usr/bin/expect
|
|
|
|
spawn hdiutil attach $argv
|
|
|
|
expect {
|
|
"byte" {send "G"; exp_continue}
|
|
"Y/N" {send "Y\r"; exp_continue}
|
|
}
|
|
|