Hi members,
I am trying to replace all strings that begin with &&user to user in the directory. It should replace in all files and sub directories of the directory.
I've tried this but it doesn't work. I am using solaris 5.10 ksh and sed -i also won't work.
find ./ -type f -exec sed -i 's/&&user/user/g' {} \;
What is the escape character for double ampersands? Appreciate your help. Thanks.
I am trying to replace all strings that begin with &&user to user in the directory. It should replace in all files and sub directories of the directory.
I've tried this but it doesn't work. I am using solaris 5.10 ksh and sed -i also won't work.
find ./ -type f -exec sed -i 's/&&user/user/g' {} \;
What is the escape character for double ampersands? Appreciate your help. Thanks.