/[cvs]/nfo/perl/libs/org/netfrag/pkgTools.pm
ViewVC logotype

Contents of /nfo/perl/libs/org/netfrag/pkgTools.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (show annotations)
Mon Jan 20 21:19:42 2003 UTC (21 years, 5 months ago) by joko
Branch: MAIN
+ initial check-in

1 ## ---------------------------------------------------------------------------
2 ## $Id: shortcuts.pm,v 1.1 2003/01/19 02:08:08 joko Exp $
3 ## ---------------------------------------------------------------------------
4 ## $Log: shortcuts.pm,v $
5 ## ---------------------------------------------------------------------------
6
7
8 package org::netfrag::pkgTools;
9
10 use strict;
11 use warnings;
12
13 require Exporter;
14 our @ISA = qw( Exporter );
15 our @EXPORT_OK = qw(
16 mkSnapshotFilename
17 );
18
19
20 # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - main
21
22 use org::netfrag::shortcuts qw( now );
23
24 sub mkSnapshotFilename {
25 my $input = shift;
26 my $stamp = now({ fs => 1 });
27 my $target = $input . '_' . $stamp . '.tar.gz';
28 return $target;
29 }
30
31 1;

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed