文件的创建日期
如何返回文件的日期? 像这样的东西是行不通的,而且也很丑陋。
ls -l tz1.sql | awk '{print $7$6 $8}'
7Jun10:00
How do I return a date of a file?
Something like this does not work and it is ugly too.
ls -l tz1.sql | awk '{print $7$6 $8}'
7Jun10:00
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
stat
获取文件的修改时间、访问时间或元数据更改时间。不记录创建时间。You can use
stat
to get the modification time, access time, or metadata change time of a file. Creation time is not recorded.使用逗号分隔字段:
当 awk 读取输入行时,该行将在字段分隔符 FS 上分割。
因此,当您打印该行时,您必须将这些字段分隔符放回原处。
“,”代表那些 FS。
编辑:
如果您想与 Ignacio Vazquez 一起使用该变体,请尝试:
输出:
HTH Chris
use commas to separate the fields:
When awk reads an input line, this line is split on the field separator FS.
Thus you have to put those field separators back in, when you print the line.
"," stands for those FSs.
EDIT:
If you want to use the variant with Ignacio Vazquez, try:
Output:
HTH Chris