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}
|
|
}
|
|
|