ls 没有 --time-style 支持

ls 没有 --time-style 支持

FMTIME我需要与以下命令相同的输出:

FMTIME=`ls -l --time-style=+%s $FILE | cut -f6 -d' '`

但我的Linux(运行busybox)不支持ls --time-style.我在跑步 ::

Linux SAM 3.10.35 #5644 SMP Wed Oct 28 12:37:28 CST 2015 x86_64 GNU/Linux synology_cedarview_412+

我有stat可用的awkcut

答案1

尝试

 stat -c %Y 
  • 您可能还需要仔细检查%X%Z
  • 参见 stat(1) (例如man stat

相关内容