Help for this page

Select Code to Download


  1. or download this
    use constant {
    OUT_DIR      => 'out',
    OUT_FIELDSEP => '=',
    ...
    VAL_MIN      => 15,
    VAL_MAX      => 3600,
    };
    
  2. or download this
    print <<USAGE;
    
    This program does this and that with the OUT_DIR. The filename is
    ...
    between VAL_MIN and VAL_MAX.
    
    USAGE
    
  3. or download this
    my $out_dir = OUT_DIR;
    my $out_fs  = OUT_FIELDSEP;
    my $out_fn  = OUT_FILENAME;
    ...
    between $valmin and $valmax.
    
    USAGE