Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    @file=`find * -type d`;
    foreach (@file) {
        `cd $_;/somepath/foo`;
    }
    
  2. or download this
    $foo=`ls -d *`;
    @file = split'',$foo;