摘要: 原子 普通字符 普通字符 非打印字符 \n \t 通用字符作为原子 \w 匹配任意一个字母,数字或者下划线 \W 匹配除字母、数字和下划线以外的一个任意字符 \d 匹配任意一个十进制数 \D 匹配除十进制数以外的任意一个其他字符 \s 匹配任意一个空白字符 \S 匹配除空白字符以外的任意一个其他字符 阅读全文
posted @ 2018-01-09 17:24 一只宅男的自我修养 阅读(125) 评论(0) 推荐(0) 编辑
摘要: def use_proxy(proxy_addr,url): import urllib.request proxy=urllib.request.ProxyHander({'http':proxy_addr}) opener=urllib.request.build_opener(proxy,urllib.request.HTTPHandler) url... 阅读全文
posted @ 2018-01-09 14:22 一只宅男的自我修养 阅读(856) 评论(0) 推荐(0) 编辑
摘要: 参数 参数说明 -a ‘Arguments’, —args=’Arguments’ 命令行参数 -m NAME, —module-name=NAME 执行模块的名字,默认使用 command 模块,所以如果是只执行单一命令可以不用 -m参数 -i PATH, —inventory=PATH 指定库存 阅读全文
posted @ 2018-01-09 14:02 一只宅男的自我修养 阅读(327) 评论(0) 推荐(0) 编辑
摘要: yum -y install ansible ansible --version mkdir /etc/ansible touch /etc/ansible/hosts [example] www.example.com ansible example -m ping -u [username] a 阅读全文
posted @ 2018-01-09 13:30 一只宅男的自我修养 阅读(448) 评论(0) 推荐(0) 编辑
摘要: http://blog.51cto.com/easylinux/1955930 阅读全文
posted @ 2018-01-09 11:40 一只宅男的自我修养 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 转:http://blog.csdn.net/u010663768/article/details/60632133 python 2.7 cpu入库 #!/usr/bin/python # -*- coding:UTF-8 -*- import MySQLdb import time import 阅读全文
posted @ 2018-01-09 11:02 一只宅男的自我修养 阅读(450) 评论(0) 推荐(0) 编辑