ファイルが最後に開かれたのはいつですか?
私はman ls
を見て(GNU coreutils 8.22を使用))、このタイムスタンプについて何も表示されません。
あなたはこれをチェックしたいかもしれません:
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.
楽しんで! :)
試してください:
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
GNU stat
コマンドを使用する必要があります。例:stat my_file.txt
は、あなたが探しているものを提供します。