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
可用的awk
和cut
。
答案1
尝试
stat -c %Y
- 您可能还需要仔细检查
%X
和%Z
。 - 参见 stat(1) (例如
man stat
)