mirror of
https://github.com/blockchain-etl/ethereum-etl.git
synced 2026-01-09 13:57:54 -05:00
5 lines
106 B
Bash
5 lines
106 B
Bash
for f in $(find . -name '*.py'); do
|
|
# echo $f
|
|
cat LICENSE.py.template $f > $f.new
|
|
mv $f.new $f
|
|
done |