Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Linux でX 日間アクセスされていないファイルを見つけるにはどうすればよいですか?
そのコマンドを見つけましたが、過去 x 日間に表示されたファイルが表示されます。
$ find /home/you -iname "*.pdf" -atime -60 -type -f
-atime +60過去 60 日間アクセスされていないファイルを表示するために使用します。
-atime +60
find /home/you -iname "*.pdf" -atime +60 -type f