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

licensify.sh

Blame
  • 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