13 useful Linux find command practical examples π§΅β
Explanation:
β’ -type f - only search for files (not directories)
β’ \( and \)` - are needed for the -type f to apply to all arguments
β’ -o - logical OR operator
β’ -iname - like -name, but the match is case insensitive
β’ -type f - only search for files (not directories)
β’ \( and \)` - are needed for the -type f to apply to all arguments
β’ -o - logical OR operator
β’ -iname - like -name, but the match is case insensitive
-i - tells grep to be case insensitive
-l - tells grep to list only files that contains the specified search string.
-l - tells grep to list only files that contains the specified search string.
That it for today's thread! Thank you for reading!
If you enjoyed this thread and found it useful, please follow us
(@linuxopsys) for more Linux, sysadmin, and devops content!.
Also feel free to add more useful practical examples.
If you enjoyed this thread and found it useful, please follow us
(@linuxopsys) for more Linux, sysadmin, and devops content!.
Also feel free to add more useful practical examples.
Loading suggestions...