The utility is called cat, short for concatenate, which means to combine files.
The command cat will also display the contents of an entire file on the screen (for example, type cat filename.txt). If the file is fairly long, it will quickly scroll past you on the screen. To prevent this, use the cat filename.txt | less command.
Using the pipe (|) and the less two separate functions, see Section 13.10 Pipes and Pagers.
Redirection means causing the shell to change what it considers to be standard input or where the standard output should be going.
To redirect standard output, use the > symbol. Placing > after the cat command (or after any utility or application that writes to standard output) directs its output to the filename following the symbol.
For example, using cat by itself outputs whatever you input to the screen as if it were repeating the line you just typed. The following example shows cat repeating every line that is entered:
To redirect the output of cat to a file, type
the following at a shell prompt (pressing the
cat > sneakers.txt |
Press
Do you notice anything different in Figure 13-6sneakers.txt.
You can find the file in the directory you were in when you started cat (type ls if you want to see it listed).
As you learned earlier, you can then use cat to read the file. At the prompt, type:
cat sneakers.txt |
![]() | Caution |
|---|---|
file, unless you want to replace it. |
Use output redirection again for another file and call it
home.txt. For this example, type the command
cat > home.txt, then
bring the coffee home take off shoes put on sneakers make some coffee relax! |
Now, on an empty line, use the
Next, use cat to join home.txt with sneakers.txt and redirect the output of both files to a brand new file called saturday.txt (you will find an example in Figure 13-7). Type the following:
cat sneakers.txt home.txt > saturday.txt |
You can see that cat has added home.txt where sneakers.txt ended.
> symbol, you tell your shell to send the information somewhere other than standard output.
However, when you use >>, you are adding information to a file, rather than replacing the contents of a file entirely.
The best explanation is a demonstration. Take two files which have already been created (sneakers.txt and home.txt) and join them by using the append output symbol. You want to add the information in home.txt to the information already in sneakers.txt, so type:
cat home.txt >> sneakers.txt |
Now check the file using the command cat sneakers.txt. The final output shows the contents of home.txt at the end of the file:
The command you typed appended the output from the file home.txt to the file sneakers.txt.
By appending the output, you save yourself time (and a bit of disk clutter) by using existing files, rather than creating a new file.
Compare the results of the files sneakers.txt and saturday.txt now, and you will see that they are identical. To make your comparison, type:
cat sneakers.txt; cat saturday.txt |
The contents of both files will be displayed — first sneakers.txt, then saturday.txt (as shown in Figure 13-8).
Not only can you redirect standard output, you can perform the same type of redirection with standard input.
When you use the redirect standard input symbol <, you are telling the shell that you want a file to be read as input for a command.
Use a file you have already created to demonstrate this idea. Type:
cat < sneakers.txt |
Because you used the less-than symbol (<) to separate the cat command from the file, the output of sneakers.txt was read by cat.
| Главная |