Passing arguments to an interactive program non-interactively

131,406

Solution 1

For more complex tasks there is expect ( http://en.wikipedia.org/wiki/Expect ). It basically simulates a user, you can code a script how to react to specific program outputs and related stuff.

This also works in cases like ssh that prohibits piping passwords to it.

Solution 2

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'

Solution 3

You can put the data in a file and re-direct it like this:

$ cat file.sh
#!/bin/bash

read x
read y
echo $x
echo $y

Data for the script:

$ cat data.txt
2
3

Executing the script:

$ file.sh < data.txt
2
3

Solution 4

Just want to add one more way. Found it elsewhere, and is quite simple. Say I want to pass yes for all the prompts at command line for a command "execute_command", Then I would simply pipe yes to it.

yes | execute_command

This will use yes as the answer to all yes/no prompts.

Solution 5

You can also use printf to pipe the input to your script.

var=val
printf "yes\nno\nmaybe\n$var\n" | ./your_script.sh
Share:
131,406
sidharth sharma
Author by

sidharth sharma

I am a computer science student and an open-source enthusiast. I base all my projects and technical activities exclusively on Linux. I experiment with stuff, particularity related to new technologies. I like to learn everything and for that I am open to seeking help and eager to offer it as well.

Updated on July 08, 2022

Comments

  • sidharth sharma
    sidharth sharma almost 2 years

    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.

    • lc.
      lc. over 11 years
      If it is reading from stdin you could pipe in your input
    • tripleee
      tripleee over 7 years
      As this question gets many duplicates, it is worth pointing out that it doesn't matter in which language the interactive program is written. It could be a C program which reads standard input, or an Erlang application, or whatever. There's something which runs from the command line and obnoxiously demands interactive input, and you'd like to automate it.
    • tripleee
      tripleee almost 6 years
      Of course, if you have control over the obnoxious application, rewrite it so that it can read the answers noninteractively (through a configuration file, command-line options, or whatever). This is much more reliable and robust against changing the order or wording of interactive questions.
  • tripleee
    tripleee over 7 years
    ... Though the proper solution in the SSH case is to switch to public-key authentication.
  • tripleee
    tripleee over 7 years
    It bears pointing out that this only works if the program reads standard input. Some programs go out of their way to read e.g. passwords interactively, even when standard input is a pipe. For passwords, this makes sense for security reasons; though some interactive programs are just simply poorly designed.
  • flow2k
    flow2k over 6 years
    @tripleee Along the lines of what you said, how does a script read passwords that is not affected by stdin? I know you can use read to grab stdin, what function can you use do what you described?
  • glenn jackman
    glenn jackman over 6 years
    In that case, you need to see if the program you're trying to interact with has a special way to send the input to it (e.g. sshpass, ssh-agent), or use expect to script the interaction.
  • tripleee
    tripleee over 6 years
    What programs like Expect do is run the client under a pseudo-tty where it looks to the client like there is a user with a terminal and a keyboard at the other end. You can't do that with a regular pipe.
  • 71GA
    71GA almost 6 years
    Important notice. This doesn't work if we add spaces to the supplied commands.
  • glenn jackman
    glenn jackman almost 6 years
    @71GA, I don't understand your concern here. What problems have you encountered?
  • ss301
    ss301 almost 5 years
    What if there are multiple prompts one after the other? @glennjackman
  • glenn jackman
    glenn jackman almost 5 years
    That's exactly what this answer addresses. Did you try it?
  • sk001
    sk001 almost 4 years
    That's what saved me. Thank you @spanchan.
  • Matthemattics
    Matthemattics over 3 years
    I don't understand why, but using printf works for certain programs (such as wml), when none of the other techniques did.
  • Muhammad Awais
    Muhammad Awais over 2 years
    thats the answer also telling how to handle the inputs coming from any source, perfect