from openpyxl import load_workbookfrom common.do_config import cfgfrom common.constant import DATA_FILE_PATH #用例excel存放的路径class HandleExcel: """ 定义处理e ...
分类:
编程语言 时间:
2020-03-18 15:48:04
阅读次数:
81
单个进程的example 1 #!/bin/bash 2 start_time=`date "+%s"` 3 echo "start_time is $start_time" 4 for((i=1;i<=4;i++)) 5 do 6 echo success $i;sleep 2 7 done 8 ...
分类:
系统相关 时间:
2020-03-18 13:23:44
阅读次数:
82
1、批量创建那些规格差不多的文件名 1 [root@linuxidc net]# for i in `seq -w 10` 2 > do touch stu\_$i\_linux.jpg 3 > done 4 [root@linuxidc net]# sl 2、然后,使用rename进行修改 1 [ ...
分类:
其他好文 时间:
2020-03-17 19:18:27
阅读次数:
120
1,java语法:基本数据类型,for-while循环,class结构 2,scf框架:和项目有关的 3,mvn基本命令:package负责打jar包,clean清除编译信息 4,spring-boot学习:学习如何启动web项目,学习如何调用json接口并返回到某个json结构体,学习schedu ...
分类:
编程语言 时间:
2020-03-17 15:33:04
阅读次数:
65
1、使用while循环输入1 2 3 4 5 6 ... 8 9 10 count = 1 while count <= 10: print(count) # count = count + 1 count += 1 2、使用while循环输入1 2 3 4 5 6 8 9 10 count = 1 ...
分类:
编程语言 时间:
2020-03-17 10:21:57
阅读次数:
96
你有一个思想,我有一个思想,我们交换后,一个人就有两个思想 If you can NOT explain it simply, you do NOT understand it well enough 现陆续将Demo代码和技术文章整理在一起 "Github实践精选" ,方便大家阅读查看,本文同样收 ...
分类:
其他好文 时间:
2020-03-17 08:11:42
阅读次数:
53
// PHP 教程 // // // ////////////////////////////////////// 一、PHP 简介 PHP(全称:PHP:Hypertext Preprocessor,即"PHP:超文本预处理器") 是一种创建动态交互性站点的强有力的服务器端脚本语言。 【特点】: ...
分类:
Web程序 时间:
2020-03-16 19:17:46
阅读次数:
74
发现空间还有挺多的,就想到可能是inode满了,用df -hi查看发现根目录下的inode使用率确实100%。 然后就开始查找哪个目录,在 / 下面执行: for i in ./*; do echo $i; find $i |wc -l; done 观看结果,然后找到inode多的目录再一级级查找下 ...
分类:
其他好文 时间:
2020-03-16 16:21:46
阅读次数:
68
<table border="1" width="50%" id="table"> <tr> <th>学号</th> <th>姓名</th> <th>操作</th> </tr> <tr> <td>xh001</td> <td>阮雌</td> <td><a href="javascript:;" on ...
分类:
其他好文 时间:
2020-03-16 14:45:41
阅读次数:
84
[toc] 1.需求描述 现存在以下文件列表: 需要只提取出文件名,而不需要后缀名,如:test1、test2 2.实现代码 c [root@localhost logan] for file_name in ;do basename $file_name .txt;done test1 test2 ...
分类:
系统相关 时间:
2020-03-16 13:08:41
阅读次数:
69