blob: cadbfa74d5eb4987634c037bd93ee7d19426e983 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#
# BEGIN COPYRIGHT BLOCK
# Copyright 2001 Sun Microsystems, Inc.
# Portions copyright 1999, 2001-2003 Netscape Communications Corporation.
# All rights reserved.
# END COPYRIGHT BLOCK
#
# the first argument is the full path and filename of ths nsperl.inf file
# the second argument is the name of the sub component to use
$infile = $ARGV[0];
$outfile = $ARGV[0] . ".tmp";
open(IN, $infile) or die "Error: could not read file $infile: $!";
open(OUT, ">$outfile") or die "Error: could not write file $outfile: $!";
$inBaseSection = 0;
while (<IN>) {
my $printIt = 1;
if ($inBaseSection && /^Archive/) {
$printIt = 0; # remove the Archive directives
} elsif ($inBaseSection && /^System32Archive/) {
$printIt = 0; # remove the Archive directives
} elsif ($inBaseSection && /^RestoreFiles/) {
$printIt = 0; # these files may not be present
}
if (/^\[base\]/) {
$inBaseSection = 1;
} elsif (/^\[/) {
$inBaseSection = 0;
}
print OUT if $printIt;
}
close OUT;
close IN;
unlink $infile;
rename $outfile, $infile;
|