Changeset 3230 in MondoRescue for branches/3.2/MondoRescue/bin/mr-process-ldd


Ignore:
Timestamp:
Dec 30, 2013, 10:46:43 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • the mr-* scripts now behave the same way as expeted in mindi (just return the values. More pretty printing is available with -v)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/MondoRescue/bin/mr-process-ldd

    r3229 r3230  
    5656my $file = mr_file_process_ldd(@ARGV) if (defined $ARGV[0]);
    5757
     58my $verbose = undef;
     59$verbose = 1 if ($ARGV[0] eq "-v");
     60
    5861foreach my $f (sort keys %$file) {
    59     print "$f\n";
    60     print "--\n";
     62    print "$f\n" if (defined $verbose);
     63    print "--\n" if (defined $verbose);
    6164    foreach my $l (@{$file->{$f}}) {
    6265        print "$l\n";
    6366    }
    64     print "--\n";
     67    print "--\n" if (defined $verbose);
    6568}
Note: See TracChangeset for help on using the changeset viewer.