Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想这里有人可以帮助我摆脱我面临的麻烦。
我的网站遭到 DDOS 攻击,我网站中的所有 html 文件都在文件末尾添加了 7 行代码。我下载了所有受污染的文件,并希望删除所有这些坏代码。但任务不堪重负。有 400 多个 html。
所以我想问那些大师,有什么方法可以批量删除最后 7 行吗?我尝试了 notepad++ 和其他应用程序,但没有找到更好的方法。
PS。HTMLS 分布在不同的目录中。
现在很多人似乎都在使用 PowerShell 来完成这样的任务。
在运行之前对其进行测试,但我认为这就是您要寻找的:
gci c:/USE_REAL_FOLDER_NAME_HERE/ | % { $path = $_ $file = gc $_ $file[0..($file.length-7)] | % {$_.trimstart()} | out-file $path }