Help for this page

Select Code to Download


  1. or download this
    system("ls -p > data");
  2. or download this
    my $output = `ls -p`;
    
    # or get each line into an array
    my @files = `ls -p1`;