如何在Linux Gnome Terminal中格式化stat表达式的输出?

时间:2014-11-01 21:22:15

标签: linux bash terminal fedora stat

我真的是Linux新手(Fedora-20),我正在努力学习基础知识 我有以下命令

echo "`stat -c "The file "%n" was modified on ""%y" *Des*`"

此命令返回此输出

The file Desktop was modified on 2014-11-01 18:23:29.410148517 +0000

我想将其格式化为:

The file Desktop was modified on 2014-11-01 at 18:23

我该怎么做?

2 个答案:

答案 0 :(得分:3)

stat你无法真正做到这一点(除非你有stat智能版我不知道。)

使用date

很有可能,您的date足够智能并处理-r切换。

date -r Desktop +"The file Desktop was modified on %F at %R"

由于你的glob,你需要一个循环来处理匹配*Des*的所有文件(在Bash中):

shopt -s nullglob
for file in *Des*; do
    date -r "$file" +"The file ${file//%/%%} was modified on %F at %R"
done

使用find

您的find很可能拥有丰富的-printf选项:

find . -maxdepth 1 -name '*Des*' -printf 'The file %f was modified on %TY-%Tm-%Td at %TH:%TM\n'

我想使用stat

(因为您的date无法处理-r转换,您不想使用find或仅因为您喜欢使用尽可能多的工具来打动您的小事妹妹)。那么,在这种情况下,最安全的做法是:

date -d "@$(stat -c '%Y' Desktop)" +"The file Desktop was modified on %F at %R"

以及你的全球需求(在Bash中):

shopt -s nullglob
for file in *Des*; do
    date -d "@$(stat -c '%Y' -- "$file")" +"The file ${file//%/%%} was modified on %F at %R"
done

答案 1 :(得分:1)

 stat -c "The file "%n" was modified on ""%y" *Des* | awk 'BEGIN{OFS=" "}{for(i=1;i<=7;++i)printf("%s ",$i)}{print "at " substr($8,0,6)}'

我在这里使用awk修改你的代码。我在这段代码中做了什么,从字段1,7我用for循环打印它,我需要修改字段8,所以我使用substr来提取前5个字符。