Help for this page

Select Code to Download


  1. or download this
    tar -zcvf packagename.tar.gz path_to_directory
    
  2. or download this
    find path1/* path2/* -exec gzip {} \;
    
  3. or download this
    ...
    my @paths = qw! /usr/home/blah  /usr/home/foo !;
    system("/usr/bin/find $_/* -exec gzip {} \\;") for @paths;
    ...