|
linux find to find files with multiple patterns
Hi friends,
How do I use linux 'find' to find different types of files?
I.e to fine "*.h", "*.c", "*.sc" all in one command.
I currently do something like this:-
find . -name "*.c" > out
find . -name "*.h" >> out
find . -name "*.sc" >> out
find . -name "*.ini" >> out
Any easy way out?
Regards,
Subu
|