摘要:
python-consul import consul c = consul.Consul(host="192.168.111.111") c.kv.put("key","value") a = c.kv.get("key") print a ('107', {u'LockIndex': 0, u' 阅读全文
摘要:
funcs=($(declare -F -p | cut -d " " -f 3))until if [ ! -z "$1" ]; then # check if the first arg is a function in this file, or use a default if [[ " $ 阅读全文
摘要:
import socketimport structimport fcntldef get_ip(iface='eth0'): """ Use Linux SIOCGIFADDR ioctl to get the IP for the interface. ref http://code.activ 阅读全文
摘要:
set -e表示一旦脚本中有命令的返回值为非0,则脚本立即退出,后续命令不再执行; set -o pipefail表示在管道连接的命令序列中,只要有任何一个命令返回非0值,则整个管道返回非0值,即使最后一个命令返回0. tput rev # reverse 命令行背景反转tput bold # bo 阅读全文