Use the tr command to translate all uppercase letters in a file, called Grades, to lowercase and store the output in the grades file.

What will be an ideal response?


The tr command reads input from stdin only and sends its output to stdout. The tr command does not work with a file as a command line argument. Thus input redirection is often used with the tr command. The following command performs the given task
tr "[:upper:]" "[:lower:]" < Grades > grades

Computer Science & Information Technology

You might also like to view...

Anecdotes and quotations can be used either as an opening or closing statement

Indicate whether the statement is true or false

Computer Science & Information Technology

In the PowerPoint Options screen, which category of options allows you to set options that impact what happens when PowerPoint first opens up?

A) Home B) Default C) Startup D) General

Computer Science & Information Technology

The Eraser button can be found on the ________ tab

A) Design B) Insert C) Home D) Layout

Computer Science & Information Technology

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

1) IF statements are used to repeat a series of instructions. 2) The WHILE loop is always performed at least one time. 3) A basic loop is performed as long as condition is false. 4) The WHILE loop is performed as long as condition is true. 5) The FOR loop exits when the EXIT statement is encountered.

Computer Science & Information Technology