Is there a way to replace some characters in a text file with a batch file?
I didn\'t find any command to do that.
Use sed or nothing:
sed -i 's/FROM/TO/g' filename.txt
sed can be download here, for various platforms.