top | item 8046519

Expect – A tool for automating interactive applications

104 points| networked | 11 years ago |expect.sourceforge.net | reply

50 comments

order
[+] danielweber|11 years ago|reply
Wow, a blast from the past. I still have some expect tools I wrote long ago that I use and maintain to this day. Not so much new stuff since scripting languages have gotten better at doing what expect does -- often calling their modules "expect" and using the exact same syntax.

I once wrote a webserver in Expect. No, it's not a good language for writing a webserver.

[+] davidw|11 years ago|reply
Tcl is a perfectly fine language for writing web servers with, actually. It was possible to do a nice, lightweight, evented web server years before Node.js showed up. AOLserver is also done with Tcl, and for a while in the 90ies, was one of the best systems for doing dynamic web sites.
[+] peterwwillis|11 years ago|reply
Tcl shows up in all sorts of places, like Cisco IOS, or haptic feedback robotic surgery interfaces, or IRC bots. It's fast, it's small, it's robust, it's powerful. It's just not sexy.
[+] thyrsus|11 years ago|reply
Be sure to check out "autoexpect": it starts an interactive session, and generates an expect script based on that. Then you typically need to edit it for generalization (e.g., skip dates and time strings; often skip version strings, etc.).
[+] zackmorris|11 years ago|reply
How did I not know about this? Autoexpect is one of the thousand ways of interacting with computers that we USED to do back in the 80s and 90s that have since fallen out of favor. Macros, modem dialers, folder watchers, etc.. Remember trying the record button in Applecript Editor, only to find that it didn't actually work like it did in Macro Maker? The fact that autoexpect isn't installed by default on Mac OS blows my mind.

Edit: still trying to install autoexpect on Mac OS 10.9.2 and having no luck. Tried ActiveTcl at http://www.activestate.com/activetcl/downloads but it doesn't seem to have autoexpect. Tried brew install autoexpect, tried port install autoexpect, nothing. Sometimes unix reminds me of looking up hints in video game magazines upon finding oneself stuck, so if someone knows how to get autoexpect on Mac, please let us know because I'm throwing in the towel.

[+] iaskwhy|11 years ago|reply
I use it to install MySQL with some non default values. I'm not that good with bash and install scripts and expect was the only way around some issues I was having.

  secure_mysql_script=$(expect -c '
  spawn sudo mysql_secure_installation
  expect "Enter current password for root (enter for none):"
  send "\r"
  expect "Change the root password?"
  send "n\r"
  expect "Remove anonymous users?"
  send "y\r"
  expect "Disallow root login remotely?"
  send "y\r"
  expect "Remove test database and access to it?"
  send "y\r"
  expect "Reload privilege tables now?"
  send "y\r"
  expect eof
  ')
  echo "$secure_mysql_script"
[+] pielud|11 years ago|reply
For python, there's pexpect: http://pexpect.readthedocs.org/en/latest/
[+] chuto|11 years ago|reply
We used to use tcl expect before discovering pexpect. Cleaner syntax, fewer false positives, nothing but good experiences with pexpect.
[+] zwischenzug|11 years ago|reply
I used pexpect as a base technology for ShutIt:

http://ianmiell.github.io/shutit/

it really is 95% of tcl's expect functionality, much easier to debug and understand. I'm grateful it exists, and it's much under-used I think.

[+] hcal|11 years ago|reply
I used to use expect to automate a bunch of business reports and system functions. I switched to a python work-alike called pexpect that I still use and love. It feels a little hacky but it works and saves a huge amount of time over the course of a year.
[+] ZoFreX|11 years ago|reply
I first discovered this about two months ago. It may be old, but it solved a problem we had and nothing else quite fit the job. We're using it to run a flaky test suite and count how many times it succeeds, fails, or times out (yes, times out - yay Android!). Very important when you're trying to determine if potential stability improvements actually make a difference or not, and you need to run the 3 minute suite ten times at least to get something statistically significant.
[+] philbarr|11 years ago|reply
Has anyone used Expect for Windows? Any good experiences to share?

I'm wondering if it's something I should take the time to learn and use.

[+] jasomill|11 years ago|reply
Expect for Windows has been finicky for me every time I've tried using it, but Cygwin Expect works well, both for interacting with other Cygwin processes (not arbitrary Win32 console apps!), and for interacting with remote machines via (Cygwin) Telnet and SSH.
[+] nnnnni|11 years ago|reply
expect is one of the most useful system administration tools out there! I've used it to batch-modify settings on 100 machines where I couldn't just scp in a new file due to each one needing small variations.

If you don't know expect (and you're a sysadmin), learn it.

[+] waterside81|11 years ago|reply
I love expect. We use it in upstart scripts. Little known gem of the unix world.
[+] npsimons|11 years ago|reply
Expect is one of the few reliable ways I've found to automate crufty, closed source things. Say, like a perforce client pull that uses a caching proxy so that the proxy is up to date for actual human pulls.
[+] jlturner|11 years ago|reply
We used Expect recently to automate iOS runtime hacking (ssh to jailbroken iOS device, run cycript to inject code, profit). One of those old Unix tools (built on tcl) that's very handy for automation.
[+] throwaway_3424|11 years ago|reply
It's very frustrating to see something like this that claims to be very useful, but shows no examples on the page.

>Expect is a tool for automating interactive applications such as telnet, ftp, passwd, fsck, rlogin, tip, etc. Expect really makes this stuff trivial.

How?

>Expect can make easy all sorts of tasks that are prohibitively difficult with anything else. You will find that Expect is an absolutely invaluable tool - using it, you will be able to automate tasks that you've never even thought of before - and you'll be able to do this automation quickly and easily.

HOW?

Ah, examples... >http://expect.sourceforge.net/#examples

It's just a giant README. This is frustrating.

[+] ff_|11 years ago|reply
It's wonderful for rapidly SSHing into a bunch of machines for doing automated things.

It's a fast hacking provisioning tool, I really like it for this purpose.

[+] agumonkey|11 years ago|reply
I remember seeing an elisp equivalent used to write ftp clients in emacs. Can't find it again, but anyway, I never got to see the original expect.
[+] younata|11 years ago|reply
I once wrote a very minimal IRC client by essentially wrapping telnet around expect. All it did was automate sending out PINGs, but it worked.