最佳答案
我似乎找不到如何打印出文件的日期。到目前为止,我能够打印出一个目录中的所有文件,但我需要用它打印出日期。
我知道我需要附上一个日期格式与回显的条目,但所有我不能找到正确的格式。
echo "Please type in the directory you want all the files to be listed"
read directory
for entry in "$directory"/*
do
echo "$entry"
done