- Timestamp:
- Dec 30, 2013, 10:46:43 AM (11 years ago)
- Location:
- branches/3.2/MondoRescue/bin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/MondoRescue/bin/mr-process-ldd
r3229 r3230 56 56 my $file = mr_file_process_ldd(@ARGV) if (defined $ARGV[0]); 57 57 58 my $verbose = undef; 59 $verbose = 1 if ($ARGV[0] eq "-v"); 60 58 61 foreach 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); 61 64 foreach my $l (@{$file->{$f}}) { 62 65 print "$l\n"; 63 66 } 64 print "--\n" ;67 print "--\n" if (defined $verbose); 65 68 } -
branches/3.2/MondoRescue/bin/mr-read-all-link
r3228 r3230 57 57 my $file = mr_file_read_all_link(@ARGV) if (defined $ARGV[0]); 58 58 59 my $verbose = undef; 60 $verbose = 1 if ($ARGV[0] eq "-v"); 61 59 62 #print Dumper($file); 60 63 61 64 foreach my $f (sort keys %$file) { 62 print "$f\n" ;63 print "--\n" ;65 print "$f\n" if (defined $verbose); 66 print "--\n" if (defined $verbose); 64 67 #print Dumper($f); 65 68 foreach my $l (@{$file->{$f}}) { 66 69 print "$l\n"; 67 70 } 68 print "--\n" ;71 print "--\n" if (defined $verbose); 69 72 }
Note:
See TracChangeset
for help on using the changeset viewer.