I have a file on my Desktop, UpperCaseWords.txt In it is a list of words, all in caps. So, I found out that running the below in terminal, it will spit out those same words in lower case right there in the terminal. Cool! But what if I wanted to run something that would run on the actual file itself, or, create a second file with the lower case words?
Can anyone help?
cat UpperCaseWords.txt | tr '[:upper:]' '[:lower:]' | tr ' ' '\ > '
