Anothe rmethod 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.
Anothe rmethod 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.
0 people found this article useful
0 people found this article useful