3.1 Redirection
Most processes initiated by UNIX commands write to the standard output (that is, they write to the terminal screen), and many take their input from the standard input (that is, they read it from the keyboard). There is also the standard error, where processes write their error messages, by default, to the terminal screen.We have already seen one use of the cat command to write the contents of a file to the screen.
Now type cat without specifing a file to read
% cat
[Return]
key. Finally hold the
[Ctrl]
key down and press [d]
(written as ^D for short) to end the input. What has happened?
If you run the cat command without specifing a file to read, it reads the standard input (the keyboard), and on receiving the'end of file' (^D), copies it to the standard output (the screen).
In UNIX, we can redirect both the input and the output of commands.
3.2 Redirecting the Output
We use the > symbol to redirect the output of a command. For example, to create a file called list1 containing a list of fruit, type % cat > list1
[Return]
after each one. pear
banana
apple
^D (Control D to stop)
What happens is the cat command reads the standard input (the keyboard) and the > redirects the output, which normally goes to the screen, into a file called list1 banana
apple
^D (Control D to stop)
To read the contents of the file, type
% cat list1
Exercise 3a
Using the above method, create another file called list2 containing the following fruit: orange, plum, mango, grapefruit. Read the contents of list2The form >> appends standard output to a file. So to add more items to the file list1, type
% cat >> list1
Then type in the names of more fruit peach
grape
orange
^D (Control D to stop)
To read the contents of the file, type grape
orange
^D (Control D to stop)
% cat list1
% cat list1 list2 > biglist
% cat biglist
3.3 Redirecting the Input
We use the < symbol to redirect the input of a command.The command sort alphabetically or numerically sorts a list. Type
% sort
[Return]
after each one. carrot
beetroot
artichoke
^D (control d to stop)
The output will be beetroot
artichoke
^D (control d to stop)
artichoke
beetroot
carrot
Using < you can redirect the input to come from a file rather than the keyboard. For example, to sort the list of fruit, type beetroot
carrot
% sort < biglist
% sort < biglist > slist
3.4 Pipes
To see who is on the system with you, type % who
% who > names.txt
% sort < names.txt
% sort < names.txt
For example, typing
% who | sort
To find out how many users are logged on, type
% who | wc -l
Exercise 3b
a2ps -Phockney textfile is the command to print a postscript file to the printer hockney.Using pipes, print all lines of list1 and list2 containing the letter 'p', sort the result, and print to the printer hockney.
Summary
command > file | redirect standard output to a file |
command >> file | append standard output to a file |
command < file | redirect standard input from a file |
command1 | command2 | pipe the output of command1 to the input of command2 |
cat file1 file2 > file0 | concatenate file1 and file2 to file0 |
sort | sort data |
who | list users currently logged in |
a2ps -Pprinter textfile | print text file to named printer |
lpr -Pprinter psfile | print postscript file to named printer |
No comments:
Post a Comment