I have lines with a single :
and a'
in them that I want to get rid of. I want to use awk
for this. I've tried using:
awk '{gsub ( "[:\']","" ) ; print $0 }'
and
awk '{gsub ( "[:']","" ) ; print $0 }'
and
awk '{gsub ( "[:']","" ) ; print $0 }'
non of them worked, but return the error Unmatched ".
. when I put
awk '{gsub ( "[:_]","" ) ; print $0 }'
then It works and removes all :
and _
chars. How can I get rid of the '
char?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…