File list-requires of Package gnome-next-pkglist
#! /usr/bin/perl
while ( <STDIN> ) {
chomp $_;
if ( -f $_ ) {
open(PAT, $_) || die "$_ not found";
while ( <PAT> ) {
chomp $_;
print "$_\n";
}
}
}
#! /usr/bin/perl
while ( <STDIN> ) {
chomp $_;
if ( -f $_ ) {
open(PAT, $_) || die "$_ not found";
while ( <PAT> ) {
chomp $_;
print "$_\n";
}
}
}