摘要:
#!/usr/bin/pythontry: import jsonexcept ImportError: import simplejson as jsonimport sysif __name__=='__main__': compath=b"/LuoYun/conf/luoyun.conf" f=open(compath,"r") jsonstr="" for l in f.readlines(): if l[:5]=='JSON=': jsonstr=l[5:] jsonstr.strip() b 阅读全文
摘要:
import socketimport reimport sysimport getoptimport stringdef check_server(address,port): s=socket.socket() print "Attempting to connect to %s on port %s" % (address, port) try: s.connect((address,port)) print "Connected to %s on port %s" % (address, port) return True excep... 阅读全文
摘要:
import subprocessmachines=["10.0.4.1","10.0.4.2","10.0.4.3","10.0.4.4","10.0.4.5","10.0.4.6","10.0.4.7","10.0.4.8","10.0.4.9","10.0.4.10"]cmd = "hostname"for machine in machines: subprocess. 阅读全文
摘要:
VI打开和编辑多个文件的命令可分两种情况:1、在同一窗口中打开多个文件:vifile1 file2 file3:n 切换到下一个文件 (n=next):N 切换到上一个文件2、在不同窗口中打开多个文件:如果已经打开一个了一个文件,则在vi的命令输入状态下输入:sp另外一个文件的路径及文件名,如此就可以在一个窗口打开多个文件了。或者用vi -ofile1 file2 file3....用分割屏幕窗口方式同时打开多个文件。可以使用 ctrl + 两次按w或者ctrl + w然后按上下键在上下窗口间切换。2.窗口分割实现编辑多文件 *先使用vi打开一个文件,例如vi actinia_proenrul 阅读全文
摘要:
import getoptimport sysdef usage(): print(''' this is help message -h --help show help info -i --input the input file or directory -g --grep grep words -t --time modify time -v --verbose show verbose information ''') passdef main(): try: opts,args=getopt.getopt(sys.argv[1:],& 阅读全文