在Windows下面,我们修改hosts文件都知道在哪里,但是在ubuntu系统中呢,还有其它的系统,比如安卓手机,或许就没那么多的小软件可供你简单的修改了,我们自己来写个吧
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/ruby #coding=utf-8 require 'open-uri' url= "http ://raw.github usercontent.com/vokins/simpleu/master/hosts" begin open( "/etc/hosts" , "w" ) do |x| x.write open(url).read end rescue Errno:: EACCES puts "Need root? " exec "sudo ruby " + $0 + ARGV .join( ' ' ) end puts "Write hosts success!" |
以上所述就是本文的全部内容了,希望大家能喜欢