Name

yes [string] — coreutils

Synopsis

/usr/bin stdin stdout - file -- opt --help --version

The yes command prints the given string (or “y” by default) forever, one string per line.

$ yes again
again
again
again
...

Though it might seem useless at first glance, yes can be perfect for turning interactive commands into batch commands. Want to get rid of an annoying “Are you SURE you want to do that” message? Pipe the output of yes into the input of the command to answer all those prompts:

$ yes | my_interactive_command

When my_interactive_command terminates, so will yes.

Get Linux Pocket Guide now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.