#! /usr/bin/perl
#######################################################################
# $Id: timestampz,v 1.3 2010-06-06 01:22:57 dpchrist Exp $
#######################################################################
# uses:
#----------------------------------------------------------------------

use warnings;
use strict;

use Dpchrist::Timestamp qw( timestampz );

our $VERSION = sprintf("%d.%03d", q$Revision: 1.3 $ =~ /(\d+)/g);

#######################################################################
# script:
#----------------------------------------------------------------------

{
    print timestampz(), "\n";
}

#######################################################################
# end of code:
#----------------------------------------------------------------------

__END__

#######################################################################

=head1 NAME

timestampz - print a UTC time (Zulu) time stamp to STDOUT


=head1 SYNOPSIS

    timestampz


=head1 DESCRIPTION

Prints a UTC time (Zulu) time stamp to STDOUT of the format:

    YYYYMMDDThhmmssZ

Where:

    YYYY is the year
    MM   is the month
    DD   is the day
    T    is the letter 'T'
    hh   is the hour
    mm   is the minute
    ss   is the second
    Z    is the letter 'Z'

Useful for log entries, tarball file names, etc..

=head1 AUTHOR

David Paul Christensen dpchrist@holgerdanske.com


=head1 COPYRIGHT AND LICENSE

Copyright 2010 by David Paul Chirstensen dpchrist@holgerdanske.com

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2.

This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307,
USA.

=cut

#######################################################################
