Give a command to

a. Redirect standard output from a sort command to a file named
phone_list. Assume the input file is named numbers.
b. Translate all occurrences of the characters [ and { to the character (, and
all occurrences of the characters ] and } to the character ), in the file
permdemos.c.
c. Create a file named book that contains the contents of two other files:
part1 and part2.


a. $ sort numbers > phone_list
b. $ cat permdemos.c | tr '[{}]' '(())' or
$ tr '[{}]' '(())' < permdemos.c
c. $ cat part[12] > book

Computer Science & Information Technology

You might also like to view...

The printer you want to use automatically, unless you specify otherwise, is called the ____________________ printer.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

It is permissible to use the percent (%) sign when entering the interest rate in the Pmt function

Indicate whether the statement is true or false

Computer Science & Information Technology

The ____ image enhancement option removes unwanted parts of a picture.

A. layering B. beveling C. cropping D. flipping

Computer Science & Information Technology

In order to protect the privacy of employees, email messages that have been erased from hard disks cannot be retrieved.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology