Skip to content

Instantly share code, notes, and snippets.

@dbankier
Created May 8, 2014 13:27
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dbankier/c0e15ff0babaa878112f to your computer and use it in GitHub Desktop.
Save dbankier/c0e15ff0babaa878112f to your computer and use it in GitHub Desktop.
Add copyright/license note to the top of all js files
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