Total newbee on this, so here's what is not working:
find . -type f -exec sed -i 's/\$_SESSION['valOne']"/\$valTwo,"/g' {} +
While it should replace recursively, in all the directories it is going through:
$_SESSION['valOne'] into just: $valTwo
I've done this many times, but it seems the quotes are too confusing for me. Any help here is highly appreciated.