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