使用Python中的os.system()收集grep输出
- 论坛
- 使用Python中的os.system()收集grep输出
22 浏览
使用Python中的os.system()收集grep输出
这个问题已经有了答案:
我正在尝试在 python 中在 Linux 操作系统上使用这个 Ubuntu 命令
cmd = "grep -n 'str' file.txt"
在脚本中,我尝试使用
command = os.system(cmd)
但是当我尝试打印这个变量时,它只打印出一个 \'0\'
,但是在输出中出现了 1:str
。有没有一种方法可以将此输出设置为变量?
admin 更改状态以发布 2023年5月22日