摘要:
awk 方法 https://www.cnblogs.com/xudong-bupt/p/3721210.html $ ps -ef | awk 'NR==1{print $1,$2,$8} /java|mysql/{print $1, $2, $8}' UID PID CMD mysql 3494 阅读全文
摘要:
基本 from robot.api import SuiteVisitor class TestStatusChecker(SuiteVisitor): def __init__(self, *args): pass def visit_test(self, test): if 'PASS' in 阅读全文
摘要:
阅读全文
摘要:
mac发送视频全屏命令 # Mac OS系统:需要先安装pyobjc模块,最后安装pyautogui # pip install pyobjc-core # pip install pyobjc # pip install pyautogui import pyautogui #按键组合alt+ta 阅读全文
摘要:
https://www.cnblogs.com/apple2016/p/7525845.html cmd rebot -d . output.xml python # coding:utf-8 from robot.api import ExecutionResult from robot impo 阅读全文
摘要:
子类调用父类的方法 # 1 class SSHConnectionCache(ConnectionCache): def __init__(self): ConnectionCache.__init__(self, no_current_msg='No open connection.') # 2 阅读全文
摘要:
Python的富比较方法包括: __lt__、小于【<】 __gt__、大于【>】 __le__、小于等于【<=】 __ge__、大于等于【>=】 __eq__、等于【==】 __ne__、不等于【!=】 阅读全文
摘要:
安装 # 安装到node_modules目录 npm i -S bootstrap # 使用 js app.use('/node_modules/', express.static('./node_modules/')) app.use('/public/', express.static('./p 阅读全文
摘要:
msg /server:192.168.1.123 * "can you get this msg?" 阅读全文
摘要:
js文件 // nodemon .\src\apache_express.js var path = require('path') var express = require('express') var fs = require('fs'); // var url = require('url' 阅读全文