Skip to content
GitLab
Explore
Sign in
parity-test-sync
add_license.sh
Find file
Normal view
History
Permalink
add_license.sh
99 B
Newer
Older
prepare for adding licenses
Marek Kotewicz
committed
Feb 05, 2016
1
2
#!/bin/sh
added license in every *.rs file
Marek Kotewicz
committed
Feb 05, 2016
3
for
f
in
$(
find
.
-name
'*.rs'
)
;
do
prepare for adding licenses
Marek Kotewicz
committed
Feb 05, 2016
4
5
6
cat
license_header
$f
>
$f
.new
mv
$f
.new
$f
done