Hi guys, just wondering about simple question.
I want to remove ??? in some of files. what I did is :
Is there any way to make it one way without copying to awi.xml_tmp first ?
coz I tried :
the result it is the file awi.xml is blank (
any idea guys ??
I want to remove ??? in some of files. what I did is :
Code:
cp awi.xml awi.xml_tmp
cat awi.xml_tmp | sed s/???// > awi.xml
Is there any way to make it one way without copying to awi.xml_tmp first ?
coz I tried :
Code:
cat awi.xml | sed s/???// > awi.xml
the result it is the file awi.xml is blank (
any idea guys ??