Changeset 102


Ignore:
Timestamp:
12/10/05 17:22:30 (18 years ago)
Author:
thauvin
Message:
  • fill help
Location:
trunk/soft/ObsData
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/soft/ObsData/Makefile.PL

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r3 r102  
    88    NAME         => 'ObsData', 
    99    VERSION_FROM => 'ObsData.pm', 
     10    EXE_FILES => [ qw(bin/obsdata) ], 
    1011); 
  • trunk/soft/ObsData/bin/obsdata

    • Property cvs2svn:cvs-rev changed from 1.9 to 1.10
    r101 r102  
    2222 
    2323GetOptions( 
    24     'c=s' => \my $configfile, 
    25     'logfile=s' => \my $log, 
     24    'c|config=s' => \my $configfile, 
     25    'l|logfile=s' => \my $log, 
    2626    'debug' => sub { $verbose = 0 }, 
    27     'v' => sub { $verbose-- }, 
     27    'v|verbose' => sub { $verbose-- }, 
    2828    'h|help' => sub { pod2usage(-exitval => 0) }, 
    2929) or pod2usage(); 
     
    3131=head1 SYNOPSIS 
    3232 
    33 obsdata -c config_file [...] 
     33    obsdata -c config_file [[-l logfile] [-d] [-v|--debug]] 
     34    obsdata [-h|-help] 
    3435 
    3536=head1 OPTIONS 
     37 
     38=over 4 
     39 
     40=item -c|--config config-file 
     41 
     42Use this configuration file 
     43 
     44=item -l|--logfile logfile 
     45 
     46Write all messages into this file 
     47 
     48=item -v|--verbose 
     49 
     50Increase verbosity (this does not affect log output) 
     51 
     52=item --debug 
     53 
     54Increase verbosity to debug level (does same things than -v -v -v) 
     55 
     56=item -h|--help 
     57 
     58Print short help message 
     59 
     60=back 
    3661 
    3762=cut 
Note: See TracChangeset for help on using the changeset viewer.