Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    chomp(my @list=`ls *.tar`);
    foreach (@list) {
      system "tar -xvf $_";
    }
    
  2. or download this
    #!/usr/bin/perl -w
    chomp(my @list=`ls *.tar`);
    system "tar -xvf " . qq{@{[@list]}};
    
  3. or download this
    tar -xvf *.tar