Monday, September 7, 2009

Converting all Upper Case letters to Lower Case in Linux

To convert all upper case characters to lower case in Linux, run the following command:
cat input_file | tr '[:upper:]' '[:lower:]' > output_file

No comments:

Post a Comment