sed to remove single and double quotes at the same time -
i trying remove single quotes , double quotes file. can in single sed command?
i trying :
sed 's/\"//g;s/\'//g' txt file but error
`' ' unmatched.
please help.
another possibility use tr:
tr -d \'\" file
Comments
Post a Comment