Skip to content
Snippets Groups Projects
Select Git revision
  • 2006f2a9c4ce6c427ccf9cb3846fb6cd9c1a7a03
  • master default protected
  • develop protected
  • feat_remove_attr
  • python2.7
  • python3.8
6 results

licensify.sh

Blame
  • user avatar
    ilor authored
    9dfe1051
    History
    licensify.sh 131 B
    #!/bin/bash
    find -name '*.h' -or -name '*.cpp' | while read file; do
    	cat LICENSE.in $file > $file.new && mv $file.new $file
    done