Subversion Repositories DevTools

Rev

Rev 383 | Blame | Compare with Previous | Last modification | View Log | RSS feed

########################################################################
# Copyright (C) 2008 ERG Limited, All rights reserved
#
# Module name   : jats_echo.pl
# Module type   : JATS Utility
# Compiler(s)   : Perl
# Environment(s): JATS
#
# Description   : A trivial utility to echo its arguments
#                 Not used in development
#                 Used in test and debug
#
# Usage         : jats_echo.pl .....
#
#......................................................................#

require 5.008_002;
use strict;
use warnings;

print "jats_echo Args:\n";
print "    Arg: $_\n" foreach ( @ARGV );
exit 0;