摘要:
不验证证书减少交互 curl -k -f {$url} -o {dest_path} python requests def download_file_with_requests(url: str, file_path: str): with Session() as session: sessi 阅读全文
摘要:
安装 apt install gdb 查看跟踪信息 strace -T -tt -e trace=all -p pid 查看进程打开的文件 lsof -p pid gdb gdb -p pid 查看上下文 py-list 堆栈 py-bt py-bt-full 变量 py-print py-loca 阅读全文