Passing arguments to an interactive program non-interactively

sidharth sharma picture sidharth sharma · Jan 18, 2013 · Viewed 111.1k times · Source

I have a bash script that employs the read command to read arguments to commands interactively, for example yes/no options. Is there a way to call this script in a non-interactive script passing default option values as arguments?

It's not just one option that I have to pass to the interactive script.

Answer

glenn jackman picture glenn jackman · Jan 18, 2013

Many ways

pipe your input

echo "yes
no
maybe" | your_program

redirect from a file

your_program < answers.txt

use a here document (this can be very readable)

your_program << ANSWERS
yes
no
maybe
ANSWERS

use a here string

your_program <<< $'yes\nno\nmaybe\n'