Small letters in a file to capital letter
perl -0777pne 'print tr/[a-z]/[A-Z]/' filename
Capital letters in a file to small letters
perl -0777pne 'print tr/[A-Z]/[a-z]/' filename
Return to article...[an error occurred while processing this directive]