前端之家收集整理的这篇文章主要介绍了
在Bash中打印文件的最后修改日期,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我似乎不能找到如何打印出一个
文件的日期。我到目前为止能打印出一个目录中的所有
文件,但我需要打印出来的日期。
我知道我需要附加日期格式与条目的回声,但所有我找不到正确的格式。
echo "Please type in the directory you want all the files to be listed"
read directory
for entry in "$directory"/*
do
echo "$entry"
done
你可以使用
stat
命令
stat -c %y "$entry"
更多信息
%y time of last modification,human-readable
原文链接:https://www.f2er.com/bash/391264.html