replace a particular text in all the files using single line shell command

Posted by developer on Stack Overflow See other posts from Stack Overflow or by developer
Published on 2010-03-26T11:00:12Z Indexed on 2010/03/26 11:03 UTC
Read the original article Hit count: 215

i have a renamed js file which i have to call in each of my php page. Now i want to replace that old name with the new one using shell. what iam using is this :-

sed -i ’s/old/new/g’ *

but this is giving the following error :-

sed: -e expression #1, char 1: unknown command:

now how can i do this replacement??

© Stack Overflow or respective owner

Related posts about shell

Related posts about shell-scripting