3 # Get all the postconf parameter names from the postconf.proto file.
5 die "Usage: $0 protofile [filename...]\n"
6 unless $protofile = shift(@ARGV);
8 # Read the whole file even if we want to print only one parameter.
10 open(POSTCONF
, $protofile) || die " cannot open $protofile: $!\n";
13 if (/^%(PARAM)\s+(\S+)/) {
19 if (/^%(PARAM)\s+(\S+)/) {
24 for $name (sort keys %found) {