shell脚本如何获取指定文件的修改日期并赋值给变量

大神,还是那问题,不过格式我看错了 是YYYYMMDDHHMMSS
2024-11-15 14:38:56
推荐回答(2个)
回答1:

ls -l file1 --time-style=full-iso|awk '{print $6,$7;}'|sed -e 's/\..*//' -e 's/[- :]//g'

回答2:

ls --full-time myfile | cut -d" " -f6-7 | cut -c1,2,3,4,6,7,9,10,12,13,15,16,18,19
用你的文件名替换myfile,其他照抄。