openethereum/add_license.sh

7 lines
99 B
Bash
Raw Normal View History

2016-02-05 13:36:30 +01:00
#!/bin/sh
2016-02-05 13:40:41 +01:00
for f in $(find . -name '*.rs'); do
2016-02-05 13:36:30 +01:00
cat license_header $f > $f.new
mv $f.new $f
done