gpt4 book ai didi

Linux命令显示文件名及其日期时间

转载 作者:太空宇宙 更新时间:2023-11-04 04:32:01 25 4
gpt4 key购买 nike

我正在尝试列出目录中的文件以及日期和时间。

我尝试使用以下两个命令:

ls 

得到如下输出:

abc.txt  testFile.txt

然后

ls -ltr

得到如下输出:

-rw-r--r-- 1 xxxxxxx domain users 23 Aug 22 09:00 RCS
-rw-r--r-- 1 xxxxxxx domain users 0 Sep 12 06:09 testFile.txt

我期望输出为:

Aug 22 09:00 RCS
Sep 12 06:09 testFile.txt

最佳答案

您可以使用以下命令来获取所需的输出:

ls -l|awk '{print $6,$7,$8,$9}'

我们使用 -l 作为长列表,它将为您提供大部分信息,然后我们将使用 awk 命令来获取我们想要的信息。您可以根据您的要求调整打印语句。

关于Linux命令显示文件名及其日期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57901483/

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