Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To allocate standard input to /dev/null, the command syntax is as follows:

<pre>ucmd
ucmd [OPTIONS...] < /dev/null
</pre>
Panel
Html bobswift

Anchor
1106447
1106447
If ucmd is executed as a background job (using the & operator), it will receive the SIGTTIN signal when ucmd tries to read from standard input. Background jobs cannot read their standard input from the terminal since the foreground job (or the shell) has it allocated. The ucmd job is stopped until it is brought to the foreground.

...