Advanced search

1 search result

  • Software / Linux / Command Line
    How do I convert text in a file to lower case?
    Converting the content of a file to lowercase a simple process using ‘tr’ cat input.txt | tr ‘[:upper:]‘ ‘[:lower:]‘ > output.txt Remember ...