13. Redirecting Input and Output
Contents:
13.1 Using Standard Input and OutputThere is absolutely no difference between reading data from a file and reading data from a terminal. [1] Likewise, if a program's output consists entirely of alphanumeric characters and punctuation, there is no difference between writing to a file, writing to a terminal, and writing to the input of another program (as in a pipe).
The standard I/O facility provides some simple defaults for managing Input/Output. There are three default I/O streams: standard input, standard output, and standard error. By convention, standard output (abbreviated stdout ) consists of all "normal" output from your program, while standard error ( stderr ) consists of error messages. It is often a convenience to be able to handle error messages and standard output separately. If you don't do anything special, programs will read standard input from your keyboard, and they will send standard output and standard error to your terminal's display.
Standard input (
stdin
) normally comes from your keyboard.
Many programs ignore
stdin
; you name files directly
on their command line - for instance, the command
cat file1 file2
never reads its standard input; it reads the files directly.
But, without filenames on the command line, UNIX commands that need input
will usually read
stdin
.
Standard input normally comes from your keyboard, but the shell can
redirect
stdin
from a file.
This is handy for UNIX commands that can't open files directly - for instance,
mail
(
1.33
)
.
To mail a file to
joan
, use
% The real virtue of standard I/O is that it allows you to redirect input or output away from your terminal to a file. As we said, UNIX is file-based ( 1.29 ) . Because terminals and other I/O devices are treated as files, a program doesn't care or even know [2] if it is sending its output to a terminal or to a file. For example, if you want to run the command cat file1 file2 , but you want to place the output in file3 rather than sending it to your terminal, give the command:
%
This is called
redirecting
standard output to
file3
. If
you give this command and look at
file3
afterward,
you will find the contents of
file1
, followed by
file2
-exactly what you would have seen on your screen if you
omitted the
One of the best-known forms of redirection in UNIX is the
pipe
.
The shell's vertical bar (
%
The pipe says "connect the standard output of the process at the left
( Article 45.20 has diagrams and more information about standard I/O and redirection. Table 13.1 shows the most common ways of redirecting standard I/O, for both the C shell and the Bourne shell.
Be aware that:
There are some more complex forms of standard I/O redirection,particularly for the Bourne shell . ( 45.21 , 45.22 , 45.23 ) Of course, programs aren't restricted to standard I/O. They can open other files, define their own special-purpose pipes, and write directly to the terminal. But standard I/O is the glue that allows you to make big programs out of smaller ones, and is therefore a crucial part of the operating system. Most UNIX utilities read their data from standard input and write their output to standard output, allowing you to combine them easily. A program that creates its own special-purpose pipe may be very useful, but it cannot be used in combination with standard utilities. Some UNIX systems, and utilities such as gawk ( 33.12 ) , support special filenames like /dev/stdin , /dev/stdout , and /dev/stderr . You can use these just as you'd use other files. For instance, to have any ordinary command read from the file afile , then standard input (from the keyboard, for example), then the file bfile :
% In the same way, a process can write to its standard output through /dev/stdout and the standard error via /dev/stderr . - , | |||||||||||||||||||||||||||||||||
|