openethereum/add_license.sh

7 lines
84 B
Bash
Raw Normal View History

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