GTKC Knowledgebase
A little bit of wisdom
How do I perform a recursive find in Linux?
Posted by  Admin on


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