11 2017 档案
统计nginx单个IP访问日志并获取IP来源
摘要:#!/usr/bin/env python #coding=utf-8 import requests from urllib2 import urlopen # import lxml.html from bs4 import BeautifulSoup import subprocess import sys,os reload(sys) sys.setdefaultencoding('u... 阅读全文
posted @ 2017-11-23 16:44 杜先生的博客 阅读(2392) 评论(0) 推荐(0) 编辑
匹配文本中所有的中文并替换
摘要:#!/usr/bin/env python # coding : utf8 import re import os,sys #import fileinput # read text f = open(sys.argv[1],'rb') text = f.readlines() f.close() c = [] for i in text: # match Chinese Char = ... 阅读全文
posted @ 2017-11-21 14:02 杜先生的博客 阅读(469) 评论(0) 推荐(0) 编辑
阿里云ECS升级OpenSSL记录
摘要:1、下载OpenSSL wget https://www.openssl.org/source/openssl-1.1.0e.tar.gz 2、解压编译安装 tar xf openssl-1.1.0e.tar.gz cd openssl-1.1.0e ./config shared zlib mak 阅读全文
posted @ 2017-11-14 17:01 杜先生的博客 阅读(1843) 评论(0) 推荐(0) 编辑