fast_sparse_interpolation/prepend_header.sh

12 lines
149 B
Bash

for f in **/*.hpp; do
cat ./header.txt $f > $f.new
mv $f.new $f
done
for f in **/*.cpp; do
cat ./header.txt $f > $f.new
mv $f.new $f
done