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.
たとえば、最も古いアクセス ファイル 100 個を見つけるにはどうすればよいでしょうか。次のことを試しましたが、ランダムにアクセスされたファイルを出力するだけです。
find /home/you -iname "*.pdf" -atime -100000 -type f | tail -n100
find /home/you -iname '*.pdf' -printf '%A@ %p\n' | sort -n | head -n 100