B
bcg008
Hi,
I'm using regedit /e in order to read registry.
For string values, I get the text inside commas, for example:
"LocalDir"="\\c:\\temp\\".
I need to strip the commas (thus LocalDir=\\c:\\temp\\).
Until recently I've used the sed utility:
sed s/'"'//g which did the required task, but moving to sed version
v4.0.7 (because of 64-bit compliant) this resolve an error:
sed: -e expression #1, char 9: Unknown option to `s'
Can someone suggest what other option can I use?
Thanks
I'm using regedit /e in order to read registry.
For string values, I get the text inside commas, for example:
"LocalDir"="\\c:\\temp\\".
I need to strip the commas (thus LocalDir=\\c:\\temp\\).
Until recently I've used the sed utility:
sed s/'"'//g which did the required task, but moving to sed version
v4.0.7 (because of 64-bit compliant) this resolve an error:
sed: -e expression #1, char 9: Unknown option to `s'
Can someone suggest what other option can I use?
Thanks