1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/expect.md

17 lines
349 B
Markdown
Raw Normal View History

2019-10-23 08:24:21 +08:00
# expect
> Script executor that interacts with other programs that require user input.
> More information: <https://manned.org/expect>.
2019-10-23 08:24:21 +08:00
- Execute an expect script from a file:
`expect {{path/to/file}}`
- Execute a specified expect script:
`expect -c "{{commands}}"`
- Enter an interactive REPL (use `exit` or `<Ctrl d>` to exit):
2019-10-23 08:24:21 +08:00
`expect -i`