what is meant by connecting STDOUT and STDIN?

7,632

Solution 1

Standard input and standard output are not commands.

Imagine commands as machines in a factory with an assembly line. Most machines are designed to have one conveyor belt to feed data in and one conveyor belt to feed data out; they are the standard input and the standard output respectively. The standard error is an opening on the side of the machine where it can eject rejects.

+-------+     +------------------+       +------------------+     +------+
| input |     |    machine A     |       |    machine B     |     |output|
| reser ­­­|=====|<stdin     stdout>|=======|<stdin     stdout>|=====|bucket|
| ‑voir |  →  |      stderr      |   →   |      stderr      |  →  |      |
+-------+     +------------------+       +------------------+     +------+
                      ||                          ||

The diagram above shows a conveyor belt that goes through two machines. The data comes from the input reservoir on the left, is fed to machine A, then the output is conveyed further to machine B (for which it is input), and machine B's output is deposited in the output bucket on the right.

In unix terms, this is called a pipeline. The metaphor is that of plumbing: a pipe connects machine A to machine B. The shell syntax for the pipeline above is

<input-file.txt commandA | commandB >output-file.txt

The < redirection symbol tells the shell to connect commandA's standard input to the file input-file.txt before launching commandA. (You can put the redirection before or after the command name.) The > redirection symbol tells the shell to connect commandB's standard output to output-file.txt. The pipe ("|") symbol in the middle tells the shell to connect commandA's standard output to commandB's standard input before launching them.

Commands can have more than one input and more than one output, but that's material for another day.

Solution 2

standard input is a command that allows user to write to a file

Not a command, but a stream. Standard in and out are like mail boxes. When a program starts, it's given a box to recieve and a box to send mail. Usually, input comes from the keyboard and and is put in the in-box, mail put in the out-box ends up on your terminal screen.

standard output is a command that has the bash shell write output to the shell

The program doesn't actually know where standard out points. When you pipe A to B (as in $ A | B), when A puts mail in the out-box, it ends up in B's in-box. B processes the input and puts its own mail in the out-box, which is what you see on the terminal.

To drop the metaphore, as mentioned, standard in/out are streams. The mail box, or file descriptor, is one end of the stream. To pipe is to connect the standard out of A to the standard in of B.

Share:
7,632

Related videos on Youtube

JohnMerlino
Author by

JohnMerlino

Updated on September 18, 2022

Comments

  • JohnMerlino
    JohnMerlino over 1 year

    I'm reading a book, it says:

    Every process has at least three communication channels available to it: “standard input” (STDIN), “standard output” (STDOUT), and “standard error” (STDERR).

    Most commands accept their input from STDIN and write their output to STDOUT. They write error messages to STDERR. This convention lets you string commands together like building blocks to create composite pipelines.

    The shell interprets the symbols <, >, and >> as instructions to reroute a command’s input or output to or from a file.

    To connect the STDOUT of one command to the STDIN of another, use the | symbol, commonly known as a pipe.

    ps -ef | grep httpd
    

    So basically what this is saying is that standard input is a command that allows user to write to a file, while standard output is a command that has the bash shell write output to the shell, and standard error is just like output but it is only invoked when there is an error in file system. Then we get to the part of connecting STDOUT and STDIN and I'm lost.

  • JohnMerlino
    JohnMerlino over 12 years
    The visual helped a lot
  • Tivie
    Tivie almost 12 years
    Great analogy. Going to borrow this one if you don't mind.
  • user2914606
    user2914606 over 10 years
    Gilles, I've asked a question on your phrasing at the bottom: unix.stackexchange.com/q/96724/29146. could you clarify?
  • Motivated
    Motivated over 5 years
    @Gilles - Can you include an example that illustrates the option to define the redirection before or after the command? For example, can the pipeline read as input-file.txt > commandA or input-file.txt < commandA?
  • Gilles 'SO- stop being evil'
    Gilles 'SO- stop being evil' over 5 years
    @Motivated The redirection symbol goes before the input/output file. The redirection as a whole can be before or after the command name. I'm sure this has been covered in full by a question on the site, try searching in unix.stackexchange.com/questions/tagged/io-redirection