I have a text file as "temp" with contents
Hai! How are you
I wanted to change the contents of the same file to
HAI! HOW ARE YOU
When i used
cat temp |tr a-z A-Z
(---only output was shown as upper case. The file remain unchanged....). I wanted the file contents to be changed.
On Using cat temp |tr a-z A-Z>>temp
(--the out was appended not overwritten). Kindly help