in reply to Creating a tgz file without a module
should do the tarr'ing and gunzipping in one step, packing up everything in $dir#!/usr/bin/perl use warnings; use strict; my $dir = '.'; system ('tar', '-zcvf', 'my_tarball.tgz', $dir);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Creating a tgz file without a module
by blue_cowdawg (Monsignor) on Sep 08, 2011 at 16:34 UTC | |
by rspishock (Monk) on Sep 08, 2011 at 17:07 UTC |