licensify.sh 131 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 #!/bin/bash find -name '*.h' -or -name '*.cpp' | while read file; do cat LICENSE.in $file > $file.new && mv $file.new $file done