Help for this page

Select Code to Download


  1. or download this
    while (my $file = <FP>) {
        chomp $file;
        ...
    }
    
  2. or download this
    my @files = `find . -ls`;
    foreach my $line (@lines) {
       chomp $file;
       ...
    }