Skip to content

Instantly share code, notes, and snippets.

@attila
Created February 15, 2015 19:13
Show Gist options
  • Save attila/21b42b1c55b80ba03a7a to your computer and use it in GitHub Desktop.
Save attila/21b42b1c55b80ba03a7a to your computer and use it in GitHub Desktop.
ufw_expect.sh
#!/usr/bin/expect
set timeout 60
spawn ufw enable
while {1} {
expect {
eof {break}
"Proceed with operation" {send "y\r"}
}
}
wait
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment