💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## [linux中文件的三种time(atime,mtime,ctime)](https://www.cnblogs.com/zhaojiedi1992/p/zhaojiedi_linux_031_linuxtime.html) ![](https://img.kancloud.cn/00/07/0007dcaa7e97af48651e2534ba5234c3_1010x263.png) ~~~ [root@centos7 time]# ls -l #默认的ls -l显示的是mtime total 8 -rw-------. 1 root      root 1933 Nov 11 08:14 anaconda-ks.cfg -rw-r--r--. 1 zhaojiedi root   71 Nov 11 09:05 issue [root@centos7 time]# ls -l --time=atime #列出文件的atime total 8 -rw-------. 1 root      root 1933 Nov 11 08:14 anaconda-ks.cfg -rw-r--r--. 1 zhaojiedi root   71 Nov 11 09:12 issue [root@centos7 time]# ls -l --time=ctime         #列出ctime total 8 -rw-------. 1 root      root 1933 Nov 11 08:14 anaconda-ks.cfg -rw-r--r--. 1 zhaojiedi root   71 Nov 11 09:03 issue ~~~ 应用实例 find ./ -name “\*data\*” -mtime +1 当前目录下文件名包含data,而且修改时间在48小时以上的