我似乎找不到如何打印文件的日期。到目前为止,我能够打印出目录中的所有文件,但我需要打印出日期。
我知道我需要在条目的回声中附加一个日期格式,但是我找不到正确的格式。
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
stat -c %y "$entry"
更多信息
%y 上次修改时间,可读