我正在尝试删除此字符串
;document.write('<iframe src="http://google.com" scrolling="auto" frameborder="no" align="center" height="11" width="11"></iframe>');
跨目录中的所有文件(包括子目录)。
我知道我必须转义字符或使用正则表达式。但是我对正则表达式很糟糕。任何见解表示赞赏。
如果要删除固定字符串,则不需要使用正则表达式。您可以按原样将其放在 sed 命令中,但选择字符串中任何字符以外的分隔符(我#
在这里使用):
str=";document.write('<iframe src="'"http://google.com" scrolling="auto" frameborder="no" align="center" height="11" width="11"></iframe>'"');"
find . -type f -exec sed -i.bk -e "s#$str##g" {} \;