正则表达式在线测试 https://c.runoob.com/front-end/854 判断一个字符串是否包含合法IP地址 ```python # 判断一个字符串是否包含合法IP地址 ip = re.search(r'((25[0-5]|2[0-…
win10中用curl或PowerShell调用HTTP post 接口
## CMD中 curl curl 也支持 ftp ``` curl -d、 --data<data> //HTTP POST数据 -o、 --output <file> //写入到文件,而不是输出到stdout -O、 //写入到文件,文件…
Linux下的压缩/解压缩
### ZIP 压缩文件夹 file123 `zip -r file123.zip file123` ``` zip 压缩后文件名 源文件 zip -r 压缩后目录名 原目录 unzip 解压 -d 指定解压路径 源文件 ``` ### …
Windows 系统下 MD5 值计算方法
命令格式为 certutil -hashfile [file_name] MD5 具体示例为: certutil -hashfile 123.txt certutil -hashfile 123.txt MD5 certutil -hashfile …