I have number of files with '{' and '}' in it. I need to replace every '{' and '}' in this file to space.
I am using the following in a script:
sed 's/{/ /g;s/}/ /g' >temp
mv temp $1
It is taking too long since the files are very huge and they have many of these characters to be replaced.
Is there any other fast way to achieve this.
Thanks,
Pramod
I am using the following in a script:
sed 's/{/ /g;s/}/ /g' >temp
mv temp $1
It is taking too long since the files are very huge and they have many of these characters to be replaced.
Is there any other fast way to achieve this.
Thanks,
Pramod