I have a file with different word in each line. My goal is to replace the first character to a capital letter and replace the 3rd character to "#".
For example: football
will be exchanged to Foo#ball
.
I tried thinking about using awk and sed.It didn't help me since (to my knowledge) sed needs an exact character input and awk can print the desired character but not change it.