摘要: 1. install python, set environment variables. 2. pip install selenium 3. 下载与自己浏览器版本匹配的chrome webdriver, 放到python.exe同目录(python安装目录)。 http://npm.taobao 阅读全文
posted @ 2020-06-04 13:01 buptqq 阅读(2818) 评论(3) 推荐(1)
摘要: #!/bin/bash startT=`date +%Y-%m-%dT%H:%M:%S`echo "TIMESTAMP CONTAINER ID NAME CPU % MEM USAGE / LIMIT MEM % NET I/O BLOCK I/O PIDS\n">>mem.$startT.txt 阅读全文
posted @ 2020-06-04 12:50 buptqq 阅读(221) 评论(0) 推荐(0)
摘要: 查找file1中每一行是否在file2中,若在输出到InRight.txt, 若不在输出到NotInRight.txt. f1=$1f2=$2 while read mylinedo grepR=`grep $myline $f2` if [[ $grepR != "" ]]; then echo 阅读全文
posted @ 2020-06-04 12:48 buptqq 阅读(191) 评论(0) 推荐(0)