标题: [文本处理] 请教各位老师如何写BAT删除Hosts内某一行? [打印本页]
作者: fmrs 时间: 2022-4-29 04:17 标题: 请教各位老师如何写BAT删除Hosts内某一行?
本帖最后由 fmrs 于 2022-4-29 04:19 编辑
请教各位老师,在%SystemRoot%\system32\drivers\etc\hosts文件里面存在以下下三行 :
127.0.0.1 www.baidu.com
127.0.0.1 www.taobao.com
127.0.0.1 www.jingdong.com
怎么写个bat把这三行删除啊? 谢谢!
作者: 5i365 时间: 2022-4-29 08:10
回复 1# fmrs
- #@&cls&powershell "gc '%~f0'|out-string|iex"&pause&exit
- sl "$env:windir\system32\drivers\etc"
- cp hosts "$HOME\Desktop" #先备份hosts到桌面
- gc hosts |
- ?{
- $_ -notmatch 'www.baidu.com|www.taobao.com|www.jingdong.com'
- } |
- Out-File "$HOME\Desktop\修改后的.txt" -enc default #对比是否成功
-
- #Out-File hosts -enc default #直接保存到原hosts文件
复制代码
作者: Batcher 时间: 2022-4-29 09:32
回复 1# fmrs
测试脚本之前请注意做好备份
请参考Q-04把bat文件保存为ANSI编码:
https://mp.weixin.qq.com/s/Koje4FufWxWBs7ioDy_LJA- @echo off
- cd /d "%SystemRoot%\system32\drivers\etc"
- findstr /v /c:"www.baidu.com" /c:"www.taobao.com" /c:"www.jingdong.com" hosts >hosts.new
- move /y hosts.new hosts
复制代码
作者: fmrs 时间: 2022-4-29 23:38
谢谢两位老师
作者: Batcher 时间: 2022-4-30 10:32
回复 4# fmrs
如果有进一步的问题,请回帖讨论。不需要单独给我发私信,谢谢。
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |