ファイルが最後に開かれた時刻を確認するには?
(GNU coreutils 8.22を使用して)見てみましたが、man ls
このタイムスタンプについては何も表示されません。
答え1
これを確認したいかもしれません:
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.
楽しくお過ごしください! :)
答え2
努力する:
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
答え3
GNUコマンドを使用する必要がありますstat
。例:stat my_file.txt
あなたが探していることを教えてくれます。