Created
May 8, 2014 13:27
-
-
Save dbankier/c0e15ff0babaa878112f to your computer and use it in GitHub Desktop.
Add copyright/license note to the top of all js files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -type f | grep -v node_modules | grep -v modules | grep -v .git | grep -v .json | grep .js | xargs -I{} perl -pi -e 'print "/*\n * Copyright (c) 2011-2014 YY Digital Pty Ltd. All Rights Reserved.\n * Please see the LICENSE file included with this distribution for details.\n */\n\n" if $. == 1' {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment