为什么 ls -lu 没有显示正确的访问时间?

为什么 ls -lu 没有显示正确的访问时间?

为什么“ls -lu”不显示访问时间,而是显示 ext4 文件系统上的修改时间?

$ date
Mon Jan  9 12:49:31 EST 2017
$ ls -lu ~/.bashrc
-rw-r--r-- 1 scott scott 4326 Jan  8 18:16 /home/scott/.bashrc
$ wc ~/.bashrc
 139  574 4326 /home/scott/.bashrc
$ ls -lu ~/.bashrc
-rw-r--r-- 1 scott scott 4326 Jan  8 18:16 /home/scott/.bashrc
$ df .
Filesystem     1K-blocks      Used Available Use% Mounted on
/dev/sda1      447651680 154618396 270270840  37% /
$ mount | grep sda1
/dev/sda1 on / type ext4 (rw,relatime,errors=remount-ro,data=ordered)

相关内容