X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=tools%2Fvirt-ls;h=8813d2fa3fd02eb9b58226f741ac42f40d98c262;hb=4f6bd18d2e2a9c1d317a07b59072579d8fff42ac;hp=7e489a234f5ae888885c2f551eb2947697a1ead4;hpb=4dd6b77ff7037ee220b530cefb412ace3d880f61;p=libguestfs.git diff --git a/tools/virt-ls b/tools/virt-ls index 7e489a2..8813d2f 100755 --- a/tools/virt-ls +++ b/tools/virt-ls @@ -26,6 +26,7 @@ use Sys::Guestfs::Lib qw(open_guest get_partitions resolve_windows_path use Pod::Usage; use Getopt::Long; use Locale::TextDomain 'libguestfs'; +use File::Temp qw/tempdir/; =encoding utf8 @@ -182,22 +183,28 @@ my %fses = my $oses = inspect_operating_systems ($g, \%fses); my @roots = keys %$oses; -die __"no root device found in this operating system image\n" if @roots == 0; die __"multiboot operating systems are not supported by virt-ls\n" if @roots > 1; my $root_dev = $roots[0]; my $os = $oses->{$root_dev}; mount_operating_system ($g, $os); -my @r; unless ($mode) { - @r = $g->ls ($directory); + my @r = $g->ls ($directory); print "$_\n" foreach @r; } elsif ($mode eq "l") { print ($g->ll ($directory)); } else { # $mode eq "R" - @r = $g->find ($directory); - print "$_\n" foreach @r; + my $dir = tempdir (CLEANUP => 1); + $g->find0 ($directory, "$dir/find0"); + open F, "$dir/find0" or die "$dir/find0: $!\n"; + my $r; + my $line; + while (($r = read (F, $line, 1024)) > 0) { + $line =~ tr{\0}{\n}; + print $line; + } + close F; } =head1 SEE ALSO @@ -213,7 +220,7 @@ L. =head1 AUTHOR -Richard W.M. Jones L +Richard W.M. Jones L =head1 COPYRIGHT