修改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:\Windows\System32\drivers\etc\host', '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
posted @ 2018-10-15 22:01  村西崔二  阅读(277)  评论(0编辑  收藏  举报