9 lines
159 B
Bash
9 lines
159 B
Bash
#!/bin/bash
|
|
|
|
expect <<EOF
|
|
set timeout 10
|
|
spawn dpkg -i --force-all ${2}
|
|
expect {
|
|
"y/n" { send "${1}\n";exp_continue }
|
|
}
|
|
EOF |