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.
これを使用して、すべての .pdf ファイルを一覧表示しています。
find . -type f -iname '*.pdf'
2008 年以降に作成された .pdf ファイルのみをリストするために、これに追加したいと思います。find またはより良い方法でこれを行う方法はありますか? ありがとう!
tmp=$(mktemp /tmp/time-XXXXXXXX) touch -t 200801010000 "$tmp" find . -type f -iname '*.pdf' -newer "$tmp" rm "$tmp"