You can try something like this:
(make sure you make a backup of your sources before trying it).bash Code:
LICENCE=/.../licence for f in `find ...`; do cat $LICENCE $f > $f.x mv $f.x $f doneTo copy to clipboard, switch view to plain text mode
You have to add a comment in every source file you wrote with information about copyright and licence (see the link in previous post for exact text) and you have to add a file with full licence text to your sources (it's usually named COPYING or LICENCE).
Bookmarks