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