linux下檢視和修改檔案時間

2021-08-17 06:33:04 字數 767 閱讀 1016

一、檢視檔案時間及相關命令

1、stat檢視檔案時間

[root@web10 ~]# stat install.log

file: 「install.log」

size: 33386 blocks: 80 io block: 4096 一般檔案

device: fd00h/64768d inode: 7692962 links: 1

access: (0644/-rw-r--r--) uid: ( 0/ root) gid: ( 0/ root)

access: 2012-07-13 16:02:34.000000000 +0800

modify: 2011-11-29 16:03:06.000000000 +0800

change: 2011-11-29 16:03:08.000000000 +0800

說明:access訪問時間。modify修改時間。change狀態改變時間。可以stat *檢視這個目錄所有檔案的狀態。

而我們想要檢視某檔案的三個時間中的具體某個時間,並以年月日時分秒的格式儲存。我們可以使用下面的命令:

[root@web10 ~]# stat install.log|grep -i modify | awk -f. '' | awk ''| awk -f- '' | awk -f: ''

20111129160306

linux下檢視和修改檔案時間

一 檢視檔案時間及相關命令 1 stat檢視檔案時間 root web10 stat install.log file install.log size 33386 blocks 80 io block 4096 一般檔案 device fd00h 64768d inode 7692962 link...

linux 下檢視檔案修改時間 等

檢視檔案時間戳命令 stat awk.txt file awk.txt size 20 blocks 8 io block 4096 regular file device 801h 2049d inode 380730 links 1 access 0644 rw r r uid 0 root g...

linux 下檢視檔案修改時間 等

檢視檔案時間戳命令 stat awk.txt file awk.txt size 20 blocks 8 io block 4096 regular file device 801h 2049d inode 380730 links 1 access 0644 rw r r uid 0 root g...