摘要:
with open("name.txt",'r') as read_file: for name in read_file: list_name = (name.split(',')) quchong = list(set(list_name)) with open("server_name",'w') as write_file: ... 阅读全文
摘要:
GitLab uses Unicorn, a pre-forking Ruby web server, to handle web requests (web browsers and Git HTTP clients). Unicorn is a daemon written in Ruby an 阅读全文
摘要:
#!/usr/bin/env python # _*_coding:utf-8_*_ import os import sys import statvfs def main(): '''deamon''' if 'linux' not in sys.platform: print 'sorry! system opreation not supply!' ... 阅读全文