I have several old text data files that were generated back in the 90's using an old DOS-era word processor. Due to the limitations present at the time, there are many, many entries that were "simplified" during the data input process.
For example, the word "Náufragos" was entered as "Naufragos".
Now, when searching for "Náufragos" in said data files, I use grep to find "Náufragos" and the search comes up empty (which it should), but I really need said search to find and output "Naufragos".
I've combed the grep documentation and have Googled extensively, but have come up empty.
Any solution needs to handle cases involving most (if not all) character "variations" that are based on the Latin alphabet (i.e. there are no Chinese, Cyrillic, Japanese, etc. present in said old data files).
Is there a grep or, perhaps, perl option that does this? Perhaps something like:
grep -<magic option> Náufragos file.txt