User Tools

Site Tools


eg-253:unix3

UNIX Tutorial Three

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 specifying a file to read <cli>ubuntu@ububtu:~/unixstuff$ cat</cli> Then type a few words on the keyboard and press the <key>Return</key> key. Finally hold the <key>C</key> key down and press <key>d</key> (written as ^D for short) to end the input.

What has happened?

If you run the cat command without specifying 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 <cli>ubuntu@ububtu:~/unixstuff$ cat > list1</cli> Then type in the names of some fruit. Press <key>Return</key> after each one. <cli>pear banana apple

</cli>

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.

To read the contents of the file, type <cli>ubuntu@ububtu:~/unixstuff$ cat list1</cli>

Exercise 3a

Using the above method, create another file called list2 containing the following fruit: orange, plum, mango, grapefruit. Read the contents of list2.

The form <html><tt>&gt;&gt;</tt></html> appends standard output to a file. So to add more items to the file list1, type <cli>ubuntu@ububtu:~/unixstuff$ cat » list1</cli> Then type in the names of more fruit <cli>peach grape orange

</cli>

To read the contents of the file, type <cli>ubuntu@ububtu:~/unixstuff$ cat list1</cli>

You should now have two files. One contains six fruit, the other contains four fruit. We will now use the cat command to join (concatenate) list1 and list2 into a new file called biglist. Type <cli>ubuntu@ububtu:~/unixstuff$ cat list1 list2 > biglist</cli>

What this is doing is reading the contents of list1 and list2 in turn, then outputting the text to the file biglist.

To read the contents of the new file, type <cli>ubuntu@ububtu:~/unixstuff$ cat biglist</cli>

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 <cli>ubuntu@ububtu:~/unixstuff$ sort</cli> Then type in the names of some vegetables. Press <key>Return</key> after each one. <cli>carrot beetroot artichoke

The output will be <cli>artichoke beetroot carrot</cli>

Using < you can redirect the input to come from a file rather than the keyboard. For example, to sort the list of fruit, type <cli>ubuntu@ububtu:~/unixstuff$ sort < biglist</cli> and the sorted list will be output to the screen.

To output the sorted list to a file, type <cli>ubuntu@ububtu:~/unixstuff$ sort < biglist > slist</cli>

Use cat to read the contents of the file slist.

3.4 Pipes

To see who is on the system with you1), type: <cli>ubuntu@ububtu:~/unixstuff$ who</cli>

One method to get a sorted list of names is to type: <cli>ubuntu@ububtu:~/unixstuff$ who > names.txt ubuntu@ububtu:~/unixstuff$ sort < names.txt</cli>

This is a bit slow and you have to remember to remove the temporary file called names when you have finished. What you really want to do is connect the output of the who command directly to the input of the sort command. This is exactly what pipes do. The symbol for a pipe is the vertical bar |.

For example, typing <cli>ubuntu@ububtu:~/unixstuff$ who | sort</cli> will give the same result as above, but quicker and cleaner.

To find out how many users are logged on, type <cli>ubuntu@ububtu:~/unixstuff$ who | wc -l</cli>

Exercise 3b

Using pipes, print all lines of list1 and list2 containing the letter 'p', sort the result.

Answer available here

Summary

Command Meaning
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

Previous Home Next

Dr Chris P. Jobling 2007/09/21 15:30

1)
On a live CD session, you'll probably be alone!
eg-253/unix3.txt · Last modified: 2011/01/14 12:45 by 127.0.0.1