#!/usr/bin/expect -f spawn -noecho echo -n hello expect { hello { send_user " world" exp_continue } eof { send_user ".\n" exit } }