Find directory name using wildcard or similar to "like"

I use the following command to search for a directory name.

find / -type d -name "ora10" 

My problem is that I'm not sure what the exact directory name is, so I would like to find directories similar to "ora10g" , "ora10client" , etc.

How to do this with find?

+80
unix
Aug 01 2018-12-18T00:
source share
1 answer

find supports wildcard matches, just add * :

 find / -type d -name "ora10*" 
+146
Aug 01 2018-12-18T00:
source share



All Articles