15 lines
220 B
Perl
Executable File
15 lines
220 B
Perl
Executable File
#!/usr/bin/perl
|
|
use esmith::Backup;
|
|
my $b = new esmith::Backup or die 'Error';
|
|
my @list = $b->restore_list;
|
|
|
|
foreach my $dir (@list){
|
|
$dir = "/$dir";
|
|
push (@newList, $dir);
|
|
}
|
|
|
|
print (join ',', @newList);
|
|
|
|
exit;
|
|
|