How do I perform a recursive find in Linux?
Posted by on 2014-09-19 14:04:33:
Another method to perform a recursive find in Linux using xargs instead of -exec
find -name '*.c' | xargs ls "$1" - will give a directory listing of all files that end in .c
Use find -iname for a case insensitive search.
Tags: Filesystem , Linux
Return to home page: Home