Created
September 12, 2011 20:20
-
-
Save jcfr/1212285 to your computer and use it in GitHub Desktop.
This file contains 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
license_file=~/Projects/Visomics/NOTICE | |
while read i; | |
do | |
echo "Checking $i" | |
if ! grep -q Copyright $i | |
then | |
echo "=> Updating $i" | |
cat $license_file $i >$i.new && mv $i.new $i | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment