Hello,
I would like to transform this:
/*!40101 SET character_set_client = utf8 */;
into this:
SET character_set_client = utf8;
I can highlight the parts I want to remove using grep, e.g.
grep --extended-regexp '^\/\*![0-9]{5}' file.txt
# or
grep --extended-regexp '\*\/$' file.txt
How do...