
find:ai:4353e
find command -iname abcd -iname zyz
$ find . -iname 'abcd' -o -iname 'zyz'
try on your machine
Searches for files/directories with names containing 'abcd' or 'zyz' ignoring case in the current directory and its subdirectories
This explanation was created by an AI. In most cases those are correct. But please always be careful and
never run a command you are not sure if it is safe.
Questions that are answered by this command:
- find command -iname abcd -iname zyz?