Hi,
I was looking for a way to add all files with certain extensions to a subversion repository.
After reading the find manual I came up with this neat line:
find -name *.pm -o -name *.t -exec svn add '{}' \;
This line adds all files with extensions *.pm and *.t to the svn. All subdirectories are included.

