SyntaxFix
Write A Post
Hire A Developer
Questions
If the file contains backslashes (paths usually) you can try something like this:
sed -i -- 's,<path1>,<path2>,g' *
ex:
sed -i -- 's,/foo/bar,/new/foo/bar,g' *.sh (in all shell scripts available)