Need a solution similar to this post (Find and replace a particular term in multiple files) but for a punctuation character replacement in the first column of each delimited tab text file.
Example:
file1.txt
afile2.txt
3file.txt
...
all other file names end with .txt
Format of txt files has a "tab" in between column and look like:
aaaa:bbb second_column third_column
w:xyz another_second_column another_third_column
I need to replace the :
in the first column to another character such as ##
.
Please help.
Does perl treat the :
character as a column cutter?