摘要: linux中截取字符串cut命令用法简介: -b:按bit字节显示行中指定直接范围的内容;cut -b 1-5,10-14 file -c:按字符charactor显示行中指定范围的字符;cut -c 1-5,10-14 file -f:按列field显示指定字段的内容;cut -f 1,3 fil 阅读全文
posted @ 2022-01-22 17:44 yudai 阅读(420) 评论(0) 推荐(0) 编辑
摘要: os.popen()、os.system()、subprocess.Popen()、subprocess.getoutput()、subprocess.getstatusoutput() 1、os.popen(cmd): 返回一个地址: <os._wrap_close object at 0x101 阅读全文
posted @ 2022-01-22 17:22 yudai 阅读(440) 评论(0) 推荐(0) 编辑