摘要:
在测试工作中,经常用到adb命令,每次输入都非常麻烦,做了一个小工具将adb命令集合起来,每次可自动填入设备id,减少重复劳动 @echo off :main chcp 65001 title=TOOLKIT set space=a a rem mode con cols=101 lines=30 阅读全文
摘要:
#!/usr/bin/env python3 import os import sys from datetime import datetime, timedelta import re import xml.etree.ElementTree as ET if len(sys.argv) < 3 阅读全文
摘要:
chcp 65001 切换代码页,避免乱码 title=TOOLKIT 设置标题 mode con cols=101 lines=30 设置列数和行数 %~1 已去除引号的参数 for %%i in ("%suffix%") do set suffix=%%~xi 后缀名 for /f "token 阅读全文