我似乎无法找到如何打印出文件的日期。我到目前为止能够打印出目录中的所有文件,但我需要用它打印出日期。
我知道我需要在条目的回显处添加日期格式,但是我找不到正确的格式。
echo "Please type in the directory you want all the files to be listed"
read directory
for entry in "$directory"/*
do
echo "$entry"
done
答案 0 :(得分:177)
'date'命令不是更简单吗?不需要awk,stat等。
date -r <filename>
另外,请考虑查看man page日期格式;例如,具有共同的日期和时间格式:
date -r <filename> "+%m-%d-%Y %H:%M:%S"
答案 1 :(得分:117)
答案 2 :(得分:13)
在OS X上,我喜欢我的日期在文件输出中的格式为YYYY-MM-DD HH:MM
。
所以要指定我要使用的文件:
stat -f "%Sm" -t "%Y-%m-%d %H:%M" [filename]
如果我想在一系列文件上运行它,我可以这样做:
#!/usr/bin/env bash
for i in /var/log/*.out; do
stat -f "%Sm" -t "%Y-%m-%d %H:%M" "$i"
done
此示例将在上次运行sudo periodic daily weekly monthly
命令时打印出来,因为它引用了日志文件。
要在每个日期下添加文件名,我会运行以下代码:
#!/usr/bin/env bash
for i in /var/log/*.out; do
stat -f "%Sm" -t "%Y-%m-%d %H:%M" "$i"
echo "$i"
done
输出如下:
2016-40-01 16:40
/var/log/daily.out
2016-40-01 16:40
/var/log/monthly.out
2016-40-01 16:40
/var/log/weekly.out
不幸的是,我不确定如何防止换行并将文件名附加到日期的末尾而不向脚本添加更多行。
PS - 我白天使用#!/usr/bin/env bash
作为Python用户,并在我的系统上安装了不同版本的bash
而不是#!/bin/bash
答案 3 :(得分:6)
添加到@StevePenny答案,你可能想要删除不那么人类可读的部分:
stat -c%y Localizable.strings | cut -d'.' -f1
答案 4 :(得分:4)
最好是date -r filename +"%Y-%m-%d %H:%M:%S
答案 5 :(得分:3)
我希望以YYYYMMDDHHMMSS
格式获取文件的修改日期。我是这样做的:
date -d @$( stat -c %Y myfile.css ) +%Y%m%d%H%M%S
说明。这是这些命令的组合:
stat -c %Y myfile.css # Get the modification date as a timestamp
date -d @1503989421 +%Y%m%d%H%M%S # Convert the date (from timestamp)
答案 6 :(得分:2)
编辑:事实证明我忘记了$entry
所需的报价,以便正确打印而不是给出#34;没有这样的文件或目录&#34;错误。非常感谢你帮助我!
这是我的最终代码:
echo "Please type in the directory you want all the files to be listed with last modified dates" #bash can't find file creation dates
read directory
for entry in "$directory"/*
do
modDate=$(stat -c %y "$entry") #%y = last modified. Qoutes are needed otherwise spaces in file name with give error of "no such file"
modDate=${modDate%% *} #%% takes off everything off the string after the date to make it look pretty
echo $entry:$modDate
这样打印出来:
/home/joanne/Dropbox/cheat sheet.docx:2012-03-14
/home/joanne/Dropbox/Comp:2013-05-05
/home/joanne/Dropbox/Comp 150 java.zip:2013-02-11
/home/joanne/Dropbox/Comp 151 Java 2.zip:2013-02-11
/home/joanne/Dropbox/Comp 162 Assembly Language.zip:2013-02-11
/home/joanne/Dropbox/Comp 262 Comp Architecture.zip:2012-12-12
/home/joanne/Dropbox/Comp 345 Image Processing.zip:2013-02-11
/home/joanne/Dropbox/Comp 362 Operating Systems:2013-05-05
/home/joanne/Dropbox/Comp 447 Societal Issues.zip:2013-02-11
答案 7 :(得分:2)
对于换行符,我编辑了你的代码以获得没有换行符的东西。
#!/bin/bash
for i in /Users/anthonykiggundu/Sites/rku-it/*; do
t=$(stat -f "%Sm" -t "%Y-%m-%d %H:%M" "$i")
echo $t : "${i##*/}" # t only contains date last modified, then only filename 'grokked'- else $i alone is abs. path
done
答案 8 :(得分:1)
如果文件名没有空格:
ls -l <dir> | awk '{print $6, " ", $7, " ", $8, " ", $9 }'
按以下格式打印:
Dec 21 20:03 a1.out
Dec 21 20:04 a.cpp
如果文件名有空格(对于没有空格的文件名,可以使用以下命令,只是看起来比前者复杂/丑陋):
ls -l <dir> | awk '{printf ("%s %s %s ", $6, $7, $8); for (i=9; i<=NF; i++){ printf ("%s ", $i)}; printf ("\n")}'
答案 9 :(得分:0)
您可以使用:
ls -lrt filename |awk '{print "%02d",$7}'
这将以2位数字显示日期。
如果介于 1 和 9 之间,则会在其前面添加“ 0”前缀并转换为01-09。
希望这符合预期。