ash;输出修改文件的时间,包括年和秒[封闭]

前端之家收集整理的这篇文章主要介绍了ash;输出修改文件的时间,包括年和秒[封闭]前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想输出一个修改文件的时间,包括年和秒.我试图使用ls -linT,意味着-T必须这样做,但它不会. -T被识别为制表大小.
我正在使用ls搜索解决方案.有人可以帮我吗
尝试–time-style = full-iso,或者只是–full-time:
ls -l --time-style=full-iso
ls --full-time

从手册页:

–time-style=STYLE
with -l,show times using style STYLE: full-iso,long-iso,iso,locale,+FORMAT. FORMAT is interpreted like date'; if
FORMAT is FORMAT1<newline>FORMAT2,FORMAT1 applies to non-recent files
and FORMAT2 to recent files; if STYLE is prefixed with
posix-‘,
STYLE takes effect only outside the POSIX locale

所以你也可以有一个格式说明符(见格式字符串的日期手册页):

ls -l --time-style=+"%Y %H:%M:%S"
原文链接:https://www.f2er.com/bash/383811.html

猜你在找的Bash相关文章