Help for this page

Select Code to Download


  1. or download this
    #!perl
    use strict;
    ...
    open OUT,'>',"filelist.txt" or die "$!";
    print OUT join "\n",@files;
    close OUT;