Changeset 2431 for trunk/gsdl/bin


Ignore:
Timestamp:
2001-05-16T21:10:28+12:00 (23 years ago)
Author:
sjboddie
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/bin/script/mkcol.pl

    r2360 r2431  
    6262    print STDOUT "   -plugin text        perl plugin module to use (there may be multiple\n";
    6363    print STDOUT "                       plugin entries)\n";
     64    print STDOUT "   -quiet              Operate quietly\n";
    6465    print STDOUT "  Note that -creator must be specified. You can make changes to all\n";
    6566    print STDOUT "  options later by editing the collect.cfg configuration file for your\n";
     
    103104        $destfile = &util::filename_cat ($coldir, $destfile);
    104105
    105         print STDOUT "doing replacements for $thisfile\n";
     106        print STDOUT "doing replacements for $thisfile\n" unless $quiet;
    106107        open (INFILE, $thisfile) ||
    107108        die "Can't read file $thisfile";
     
    141142              'title/.+/', \$title,
    142143              'about/.+/', \$about,
    143               'plugin/.+', \@plugin
     144              'plugin/.+', \@plugin,
     145              'quiet', \$quiet,
    144146              )) {
    145147    &print_usage();
     
    243245
    244246    # start creating the collection
    245     print STDOUT "Creating the collection $collection\n";
     247    print STDOUT "Creating the collection $collection\n" unless $quiet;
    246248    &traverse_dir ($mdir, $cdir);
    247     print STDOUT "The new collection is in $cdir.\n";
     249    print STDOUT "The new collection is in $cdir.\n" unless $quiet;
    248250}
    249251
Note: See TracChangeset for help on using the changeset viewer.