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.
find / \ -newer $1
上記は私がこれまでに持っているコードです。現在のディレクトリにとどまりながら、引数1よりも新しいすべてのファイルを検索するようにしようとしています。プルーンの使い方をいろいろ試しましたが、うまくいくものが見つからないようです。助言がありますか?
ありがとうございました
あなたは-maxdepth 1旗が欲しい。find /現在のディレクトリで操作したいのに、なぜ使用しているのですか? 次のようになります。
-maxdepth 1
find /
find . -maxdepth 1 -newer $1