Skip to content
Snippets Groups Projects
Select Git revision
  • 2c70f1acafe47f44053a05d726171d3c9d8f29e4
  • 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