openethereum/add_license.sh

7 lines
84 B
Bash
Executable File

#!/bin/sh
for f in **/*.rs; do
cat license_header $f > $f.new
mv $f.new $f
done