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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.