Files
be.ems/misc/spawndpkg.sh
2024-01-17 14:40:48 +08:00

9 lines
157 B
Bash

#!/bin/bash
expect <<EOF
set timeout ${1}
spawn dpkg -i --force-all ${3}
expect {
"y/n" { send "${2}\n";exp_continue }
}
EOF