in reply to Creating Tarballs in a perl scripts
#!/usr/bin/perl use warnings; use strict; my $dir = '.'; system ('tar', '-zcvf', 'my_tarball.tgz', $dir);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Creating Tarballs in a perl scripts
by stevieb (Canon) on Jun 11, 2012 at 17:29 UTC |