gpt4 book ai didi

python - 如何在Python中将 "ls-ltr | grep *.txt | cut -1 "的输出重定向到列表

转载 作者:太空宇宙 更新时间:2023-11-04 05:38:39 26 4
gpt4 key购买 nike

这是 Linux 上的基础。我需要将以下内容的输出重定向到文件或列表。

cmd="ls-ltr | grep *.txt | cut -1 "

我的代码是这样的:

#!/usr/bin/python

import os

path='/opt/dsoren/'
os.system('ls-ltr | grep *.txt | cut -1 > /dest_path/abc.txt')

非常感谢任何帮助或见解。

最佳答案

为什么不使用内置函数?

import glob
import os
sorted(glob.glob('./*.txt'), key=os.path.getmtime)

关于python - 如何在Python中将 "ls-ltr | grep *.txt | cut -1 "的输出重定向到列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27984788/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com