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

poliqarpcorpusreader.h

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