openethereum/add_license.sh
2016-02-05 13:40:41 +01:00

7 lines
99 B
Bash
Executable File

#!/bin/sh
for f in $(find . -name '*.rs'); do
cat license_header $f > $f.new
mv $f.new $f
done