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

大神,还是那问题,不过格式我看错了 是YYYYMMDDHHMMSS
2024年11月15日 14:38
有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,其他照抄。