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 / -type d -name "ora10"
私の問題は、正確なディレクトリ名がわからないため、、、などのようなディレクトリを見つけたいということ"ora10g"です"ora10client"。
"ora10g"
"ora10client"
検索でこれを行うにはどうすればよいですか?
find はワイルドカードの一致をサポートしています。次を追加するだけ*です:
*
find / -type d -name "ora10*"