answersLogoWhite

0

There are many different ways of doing this. If you are asking about the content of a file, use the 'tr' (translate) command. The actual parameters may vary from system to system, so use the 'man tr' command to be sure.

For example, you may be able to change from lower to upper case by:

tr '[a-z]' '[A-Z]' < infile > outfile

User Avatar

Wiki User

14y ago

What else can I help you with?