修改hosts文件的脚本1.0
Posted cuizhx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改hosts文件的脚本1.0相关的知识,希望对你有一定的参考价值。
import sys
IP_input = input("Please input IP:")
DNS_input = input("Please input Domain-Name:")
if sys.platform == ‘win32‘:
with open(r‘C:WindowsSystem32driversetchost‘, ‘a‘) as f:
f.write(IP_input + ‘ ‘+DNS_input)
elif sys.platform == ‘linux‘ or sys.platform == ‘darwin‘:
with open(‘/etc/hosts‘, ‘a‘) as f:
f.write(IP_input + ‘ ‘ + DNS_input)
else:
pass
以上是关于修改hosts文件的脚本1.0的主要内容,如果未能解决你的问题,请参考以下文章