repo.or.cz
/
opsoft_test.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
current version
[opsoft_test.git]
/
gclib2
/
fix_headers.pl
blob
05775288e07d06c7e4c091f6b6bcf08ed198a9ed
1
#!/usr/bin/perl
2
3
open
(
FILE
,
"< headers.txt"
)
or die
"open file"
;
4
@files
= <
FILE
>;
5
foreach
$file
(
@files
) {
6
chomp
$file
;
7
print
"cp -f
$file
include/
\n
"
;
8
system
"cp -f
$file
include/"
;
9
}
10
close
FILE
;