Help for this page

Select Code to Download


  1. or download this
    my @files = `ls -1`;
    chomp @files;
    
    # or in one line
    chomp(my @files = `ls -1`);