Working with a #documentation #site. Multiple recursive subdirectories.
After converting from #html to #markdown, most files had the backslash character ('\') in random places (an escape character I assume). These need to be removed. ALL OF THEM.
No problem, baby - this is #Linux :
grep -rl '\\' docs/ | xargs sed -i 's/\\//g'