Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update copyright to 2011-2013 #5

Open
eribeiro opened this issue Jan 1, 2013 · 0 comments
Open

Update copyright to 2011-2013 #5

eribeiro opened this issue Jan 1, 2013 · 0 comments

Comments

@eribeiro
Copy link

eribeiro commented Jan 1, 2013

Hi,

I've seen the Scala files are still pointing to 2011. The script below should upgrade to 2011-2013. Save it somewhere in the path, and run it from the root of the overlock project.


!/bin/bash

for f in $(find . -name *.scala | xargs grep -R -l 'Copyright 2011, Boundary')
do

echo "$f"
sed 's/Copyright 2011/Copyright 2011-2013/' "$f" > out.tmp
mv out.tmp "$f"

done


PS: I tested it and it worked. :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant