Chapter 7. Input/Output and Command-Line Processing
The past few chapters have gone into detail about various shell
programming techniques, mostly focused on the flow of data and
control through shell programs. In this chapter, we switch the focus
to two related topics. The first is the shell's
mechanisms for doing file-oriented input and output. We present
information that expands on what you already know about the
shell's basic I/O redirectors.
Second, we'll "zoom
in" and talk about I/O at the line and word level.
This is a fundamentally different topic, since it involves moving
information between the domains of files/terminals and shell
variables. echo and command
substitution are two ways of doing this that we've
seen so far.
Our discussion of line and word I/O will lead into a more detailed
explanation of how the shell processes command lines. This
information is necessary so that you can understand exactly how the
shell deals with quotation, and so that you can
appreciate the power of an advanced command called eval, which we will cover at the end of the
chapter.
|