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 area in Impress where you enter text, numbers, or graphics to create a document is known as the ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

A ________ is a portion of a document that is formatted differently from surrounding text

A) section B) margin C) block D) division

Computer Science & Information Technology