source: MondoRescue/branches/3.2/MondoRescue/bin/mr-read-all-link@ 3231

Last change on this file since 3231 was 3231, checked in by Bruno Cornec, 10 years ago
  • Try to put everything for mindi under /usr now with the way the latest distros work.
  • symlinks.tgz is gone as a consequence
  • FAILSAFE kernel is now gone in mindi
  • mindi now uses the new mr-read-all-link and mr-process-ldd perl scripts.
  • All this makes this version 3.0.0
  • Property svn:executable set to *
File size: 1.7 KB
RevLine 
[3224]1#!/usr/bin/perl -w
2#
3# $Id$
[3226]4# Copyright B. Cornec 2005-2014
[3224]5# Provided under the GPL v2
6#
7# Get all links from a file
8#
9use strict;
[3228]10use Data::Dumper;
[3224]11use MondoRescue::File;
12
13=pod
14
15=head1 NAME
16
17mr-read-all-link keeps track of all the links of a file and display them
18
19=head1 DESCRIPTION
20
21mr-read-all-link keeps track of all the links of a file and display them, by analyzing the path under which the file is located and mentioning all links that are encountered so that all the required content for a chroot environment are given back correctly.
22
23=head1 SYNOPSIS
24
25mr-read-all-link /path/to/file ...
26
27=head1 ARGUMENTS
28
29=over 4
30
31=item B</path/to/file>
32
33This is the path of the binary file and for which we want its links to be included
34
35=back
36
37=head1 WEB SITES
38
39The main Web site of the project is available at L<http://www.mondorescue.org>. Bug reports should be filled using the trac instance of the project at L<http://trac.mondorescue.org/>.
40
41=head1 USER MAILING LIST
42
43For community exchanges around MondoRescue please use the list L<http://sourceforge.net/mailarchive/forum.php?forum_name=mondo-devel>
44
45=head1 AUTHORS
46
47The MondoRescue team lead by Bruno Cornec L<mailto:bruno@mondorescue.org>.
48
49=head1 COPYRIGHT
50
51MondoRescue is distributed under the GPL v2.0 license or later,
52described in the file C<COPYING> included with the distribution.
53
54=cut
55
56
57my $file = mr_file_read_all_link(@ARGV) if (defined $ARGV[0]);
58
[3230]59my $verbose = undef;
[3231]60$verbose = 1 if ((defined $ARGV[0]) && ($ARGV[0] eq "-v"));
[3230]61
[3228]62#print Dumper($file);
63
[3224]64foreach my $f (sort keys %$file) {
[3230]65 print "$f\n" if (defined $verbose);
66 print "--\n" if (defined $verbose);
[3228]67 #print Dumper($f);
68 foreach my $l (@{$file->{$f}}) {
69 print "$l\n";
70 }
[3230]71 print "--\n" if (defined $verbose);
[3224]72}
Note: See TracBrowser for help on using the repository browser.