Standard Output

Noun · Development

Definitions

  1. The default output stream (file descriptor 1) to which a process writes its normal program output. In Unix-like systems, stdout is typically connected to the terminal but can be redirected to a file or piped to another process.

    In plain English: The default place where a program sends its regular output text, usually your terminal screen.

    Example: "Just pipe standard output to grep and you'll find the line you need."

Related Terms