摘要:
一般情况下,你都是怎么利用SecureCRT向服务器上传文件的呢? 通常都是一下这样吧: 1 >sftp lcd e:/ 2 3 >sftp cd /root/test 4 5 >sftp put test.aaa 6 7 ..... 8 ..... 9 ..... 10 (省略一堆进度条) 11 阅读全文
摘要:
import logging from logging.handlers import RotatingFileHandler # 设置日志的记录等级 logging.basicConfig(level=logging.DEBUG) # 调试debug级 # 创建日志记录器,指明日志保存的路径(前面 阅读全文