- 博客(9)
- 收藏
- 关注
原创 200205002 shell中if相关
文件表达式 -e filename 如果 filename存在,则为真 -d filename 如果 filename为目录,则为真 -f filename 如果 filename为常规文件,则为真 -L filename 如果 filename为符号链接,则为真 -r filename 如果 filename可读,则为真 -w filename 如果 filename可写,则为真 -x f...
2020-02-05 11:45:12 133
原创 20020501 shell中的$0 $n $# $* $@ $? $$
$0 当前脚本的文件名 $n 传递给脚本或函数的参数。n 是一个数字,表示第几个参数。例如,第一个参数是$1,第二个参数是$2。 $# 传递给脚本或函数的参数个数。 $* 传递给脚本或函数的所有参数。 $@ 传递给脚本或函数的所有参数。 $* 和 $@ 的区别 $* 和 $@ 都表示传递给函数或脚本的所有参数,不被双引号" “包含时,都以”$1" “$2"…"$n” 的形式输出所有...
2020-02-05 11:31:56 108
原创 20011701python函数嵌套
1、装饰器 from functools import wraps import datetime def logging(func): @wraps(func) def wrapper(*args, **kwargs): """print log before a function.""" print('[DEBUG] {}: enter ...
2020-01-17 16:24:42 119
原创 20011001vim配置
set nocompatible " required filetype off " required " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " alt...
2020-01-10 03:47:49 156
原创 19092501es scroll-scan的python滚动翻页
from elasticsearch import Elasticsearch es = Elasticsearch([ 'http://conf:9200/' ]) page = es.search( index ='ware_index', doc_type ='ware_type', scroll ='2m', search_type...
2019-09-25 20:31:46 280
原创 19091802使用subprocess
目录 subprocess.call() subprocess.check_out() subprocess.check_output() subprocess.Popen() subprocess.call() res = subprocess.call('ls -l', shell = True) print 'res:', res subprocess.chec...
2019-09-18 15:28:50 108
转载 19091801threading线程run()和start()
start() import threading import time def worker(): count = 1 while True: if count >= 6: break time.sleep(1) count += 1 print("thread name = {...
2019-09-18 11:07:05 813
原创 19082801python常见内建模块
1、time >>> now = time.time() # 当前时间 float类型 >>> time.strftime("%Y-%m-%d %H:%M:%S") #当前时间 str '2016-11-04 15:29:58' >>> time.ctime() # 当前时间 english str 'Fri Nov 4 ...
2019-08-28 17:11:32 149 1
原创 19082001supervisor和crontab的用法
1. supervisor 简介 是Linux/Unix系统下的一个进程管理工具,当一个进程意外被杀死,supervisor监听到进程死后,会自动将它重启 /etc/supervisor/config.d 用于存放进程管理的配置文件的目录 /etc/supervisord.conf 修改/etc/supervisord.conf中的include参数,将/etc...
2019-08-20 17:37:38 1310
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人