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...
A(n) ________ is a special type of shape that you can add to your presentation and to which
you can assign an action. Fill in the blank(s) with correct word
Computer Science & Information Technology
Before importing an XML file into Excel, an XML ________ should be added to the worksheet
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology