I want to add our company\'s copyright information to all of our EXISTING source code files.
The project is developed in Eclipse. so, for new files I can m
Eclipse
I would install CygWin (core + find) and do something of a kind
find . -name *.java -exec mv '{}' tmp && cp copyright '{}' && cat tmp >> '{}' && rm tmp \;