Answers for "find only directories which has those files linux"

4

linux search all directories for file

find / -iname 'book1*'
Posted by: Guest on December-14-2020
0

find only list directories

find . -maxdepth 1 -type d -iname "<regex>" -printf '%fn'
Posted by: Guest on July-29-2021

Code answers related to "find only directories which has those files linux"

Browse Popular Code Answers by Language