Files
be.ems/misc/spawndpkg.sh
2024-01-16 19:07:46 +08:00

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