Skip to content

Instantly share code, notes, and snippets.

@NejcZupec
Created July 5, 2018 06:55
Show Gist options
  • Save NejcZupec/9675832ad0a63ef45e042f353519ecaf to your computer and use it in GitHub Desktop.
Save NejcZupec/9675832ad0a63ef45e042f353519ecaf to your computer and use it in GitHub Desktop.
Fix license header
#!/usr/bin/env bash
for f in $(find . -name '*.sql' -not -path "./node_modules/*")
do
if ! grep -q "Copyright" $f
then
echo $f
cat header_file $f >$f.new && mv $f.new $f
fi
done
/* License header file
*
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment