openethereum/scripts/add_license.sh

7 lines
99 B
Bash
Raw Normal View History

2016-07-11 18:30:58 +02:00
#!/bin/sh
for f in $(find . -name '*.rs'); do
cat license_header $f > $f.new
mv $f.new $f
done