Skip to content
Snippets Groups Projects
Select Git revision
  • 7ada47adf6d8b204edb2b18aa11991cbfc0c8792
  • master default protected
  • fix-words-ann
  • wccl-rules-migration
  • develop
5 results

libccloperator.i

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