在开发EWB测试的时候,经常要修改host 以配合测试,每次都是打开N个目录,找到host文件,然后修改保存,相当繁琐,如果能有个简单的办法只需要点击一下鼠标既可以把host文件修改成women想要的内容该如何操作呢?请看下面的代码:
@echo off color 0F @attrib -r "%windir%\system32\drivers\etc\hosts" @echo ######测试配置 beg >>"%windir%\system32\drivers\etc\hosts" @echo 127.0.0.1 www.phpernote.com >>"%windir%\system32\drivers\etc\hosts" @echo localhost localhost.phpernote.com >>"%windir%\system32\drivers\etc\hosts" @echo ######测试配置 end >>"%windir%\system32\drivers\etc\hosts" @attrib +r "%windir%\system32\drivers\etc\hosts"
将以上代码保存为后缀名为bat的文件即可。双击这个批处理文件,会发现host已经修改了。
备注:当然具体的情况要根据具体的情况修改以上代码中的部分内容。