Created
September 23, 2015 04:55
-
-
Save AdamOssenford/f13f8c76b8757887b66a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MYPWD="w00t" | |
expect -c ' | |
spawn zip blap.zip blah -e | |
expect { | |
"*Enter password*" { send "'"$MYPWD"'\r" | |
exp_continue | |
} | |
"*Verify password*" { send "'"$MYPWD"'\r" | |
exp_continue | |
} | |
}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment