web-dev-qa-db-ja.com

ファイルが最後に開かれたのはいつですか?

ファイルが最後に開かれたのはいつですか?

私はman lsを見て(GNU coreutils 8.22を使用))、このタイムスタンプについて何も表示されません。

5
tlehman

あなたはこれをチェックしたいかもしれません:

ls -l --time=atime

atime — updated when file is read
mtime — updated when the file changes.
ctime — updated when the file or owner or permissions changes.

楽しんで! :)

8
Mr.TK

試してください:

ls -lu

アクセス時間で結果をソートしたい場合:

ls -ltu

man lsから:

-u     with  -lt:  sort  by, and show, access time with -l: show access
              time and sort by name otherwise: sort by access time

完全な日付時刻を取得するには、--full-timeを使用します。

$ ls -ltu --full-time

またはGNU statを使用します:

$ stat -c "%x" -- test.txt 
2014-06-30 19:21:05.481161360 +0700
6
cuonglm

GNU statコマンドを使用する必要があります。例:stat my_file.txtは、あなたが探しているものを提供します。

4
0x0