I have a textfile in which some words are printed in ALL CAPS. I want to be able to just convert everything in the textfile to lowercase, using sed. That means
sed
echo "Hello MY name is SUJIT " | sed 's/./\L&/g'
Output:
hello my name is sujit