Created
October 25, 2012 03:06
-
-
Save thinkerbot/3950215 to your computer and use it in GitHub Desktop.
Expect examples
This file contains hidden or 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
#!/bin/bash | |
# works | |
cat > example <<SCRIPT | |
#!/usr/bin/env expect -f | |
spawn irb | |
interact | |
SCRIPT | |
chmod +x example | |
./example | |
# works (BASH) | |
expect <(printf "\ | |
spawn irb | |
interact | |
") | |
# does NOT work -- stdin isn't a tty!! | |
expect - <<SCRIPT | |
spawn irb | |
interact | |
SCRIPT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment