summaryrefslogtreecommitdiff
path: root/ACE/bin/cltime.pl
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-03-04 13:56:48 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-03-04 13:56:48 +0000
commitc4078c377d74290ebe4e66da0b4975da91732376 (patch)
tree1816ef391e42a07929304908ac0e21f4c2f6cb7b /ACE/bin/cltime.pl
parent700d1c1a6be348c6c70a2085e559baeb8f4a62ea (diff)
downloadATCD-c4078c377d74290ebe4e66da0b4975da91732376.tar.gz
swap in externals for ACE and TAO
Diffstat (limited to 'ACE/bin/cltime.pl')
-rwxr-xr-xACE/bin/cltime.pl13
1 files changed, 0 insertions, 13 deletions
diff --git a/ACE/bin/cltime.pl b/ACE/bin/cltime.pl
deleted file mode 100755
index a962a20912a..00000000000
--- a/ACE/bin/cltime.pl
+++ /dev/null
@@ -1,13 +0,0 @@
-# $Id$
-use strict;
-
-my($name) = shift;
-my($email) = shift;
-my($entry) = scalar(gmtime());
-
-my($tz) = 'UTC';
-$entry =~ s/(:\d\d\s+)(.*)(\d\d\d\d)$/$1$tz $3/;
-
-$entry .= " $name <$email>";
-
-print $entry;