正規表現を使用してEclipseのreplaceコマンドを使用できると思います。
あなたの著作権が次のようなものだと想像してください。
/* jQuery UI CSS Framework
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
*/
それから
1. Go to menu: Search -> File
2. in the Search dialog
2.1. check the "Regular Expression"
2.2. in the Containing text:
\A[^(\Q/*\E\s+jQuery.*)]
2.3 click the Replace
past your copyright
正規表現の説明:
\A - ファイルの開始
\Q...\E - ここに正規表現のキーワードが入ります ( / と * は正規表現のキーであるため)
\s+ - 空白
[^(..)] - 以外を意味します