Expect-like tool for automating interactive shell commands
Expect for shells
sexpect$ sexpect spawn bash
sexpect send 'echo hello'
sexpect expect 'hello'$ sexpect spawn ssh user@host
sexpect expect 'password:'
sexpect send 'mypassword'
sexpect expect '$'$ sexpect spawn ftp ftp.example.com
sexpect expect 'Connected'
sexpect send 'quit'