我真的是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
我该怎么做?
答案 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个字符。