ls -l显示年月日时分秒信息

Linux使用ls命令时,ls -l 默认只显示“月-日”,而不显示“年”,这样就给我们查看文件的时间属性带来困扰,这时侯,我们可以指定time-style(时间显示类型)。

linux中time-style的参数为:

  • `full-iso'

  • `long-iso'

  • `iso'

  • `locale'

具体解释如下。(http://www.gnu.org/software/coreutils/manual/html_node/Formatting-file-timestamps.html) --time-style=style’ List timestamps in style.style. Thestyleshould be one of the following: ‘+format’ List timestamps usingformat, whereformatis interpreted like the format argument ofdate(seedate invocation). For example,--time-style="+%Y-%m-%d %H:%M:%S"causeslsto list timestamps like ‘2002-03-30 23:45:56’. As withdate,format's interpretation is affected by theLC_TIMElocale category.

Ifformatcontains two format strings separated by a newline, the former is used for non-recent files and the latter for recent files; if you want output columns to line up, you may need to insert spaces in one of the two formats.

‘full-iso’ List timestamps in full usingISO8601 date, time, and time zone format with nanosecond precision, e.g., ‘2002-03-30 23:45:56.477817180 -0700’. This style. is equivalent to ‘+%Y-%m-%d %H:%M:%S.%N %z’.

This is useful because the time output includes all the information that is available from the operating system. For example, this can help explainmake's behavior, sinceGNUmakeuses the full timestamp to determine whether a file is out of date.

‘long-iso’ ListISO8601 date and time in minutes, e.g., ‘2002-03-30 23:45’. These timestamps are shorter than ‘full-iso’ timestamps, and are usually good enough for everyday work. This style. is equivalent to ‘+%Y-%m-%d %H:%M’.

‘iso’ ListISO8601 dates for non-recent timestamps (e.g., ‘2002-03-30’), andISO8601 month, day, hour, and minute for recent timestamps (e.g., ‘03-30 23:45’). These timestamps are uglier than ‘long-iso’ timestamps, but they carry nearly the same information in a smaller space and their brevity helpslsoutput fit within traditional 80-column output lines. The following twolsinvocations are equivalent:

newline='

'

ls -l --time-style="+%Y-%m-%d $newline%m-%d %H:%M"

ls -l --time-style="iso"

‘locale’ List timestamps in a locale-dependent form. For example, a Finnish locale might list non-recent timestamps like ‘maalis 30 2002’ and recent timestamps like ‘maalis 30 23:45’. Locale-dependent timestamps typically consume more space than ‘iso’ timestamps and are harder for programs to parse because locale conventions vary so widely, but they are easier for many people to read.

TheLC_TIMElocale category specifies the timestamp format. The defaultPOSIXlocale uses timestamps like ‘Mar 30 2002’ and ‘Mar 30 23:45’; in this locale, the following twolsinvocations are equivalent:

newline='

'

ls -l --time-style="+%b %e %Y$newline%b %e %H:%M"

ls -l --time-style="locale"

Other locales behave differently. For example, in a German locale,--time-style="locale"might be equivalent to--time-style="+%e. %b %Y $newline%e. %b %H:%M"and might generate timestamps like ‘30. Mär 2002’ and ‘30. Mär 23:45’.

‘posix-style’ ListPOSIX-locale timestamps if theLC_TIMElocale category isPOSIX,styletimestamps otherwise. For example, the ‘posix-long-iso’ style. lists timestamps like ‘Mar 30 2002’ and ‘Mar 30 23:45’ when in thePOSIXlocale, and like ‘2002-03-30 23:45’ otherwise.

You can specify the default value of the--time-styleoption with the environment variableTIME_STYLE; ifTIME_STYLEis not set the default style. is ‘locale’.GNUEmacs 21.3 and later use the--diredoption and therefore can parse any date format, but if you are using Emacs 21.1 or 21.2 and specify a non-POSIXlocale you may need to set ‘TIME_STYLE="posix-long-iso"’.

我们可以把

alias ll='ls -l --time-style=long-iso';

写在.bash_profile中,这样用ll就可以显示每个文件具体的时间了

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,434评论 0 10
  • pyspark.sql模块 模块上下文 Spark SQL和DataFrames的重要类: pyspark.sql...
    mpro阅读 9,504评论 0 13
  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 9,846评论 0 23
  • 【清芳福田】33 20190324 充实的一周。 周二,约见德芬。大风中,收到静一老师消息。听完静一老师陈述,脱口...
    清芳福田阅读 189评论 0 1
  • 不关注他人的人,其人生必遭莫大的困难,同时还会给他人带来莫大的伤害。人类所有的失败均源于这类人。 当你遇到一只温顺...
    _情不知所起__阅读 199评论 0 1