summaryrefslogtreecommitdiff
path: root/vest/tac.pl
diff options
context:
space:
mode:
Diffstat (limited to 'vest/tac.pl')
-rwxr-xr-xvest/tac.pl8
1 files changed, 8 insertions, 0 deletions
diff --git a/vest/tac.pl b/vest/tac.pl
new file mode 100755
index 00000000..9fb525c1
--- /dev/null
+++ b/vest/tac.pl
@@ -0,0 +1,8 @@
+#!/usr/bin/perl
+
+while(<>) {
+ chomp;
+ $|=1;
+ print (scalar reverse($_));
+ print "\n";
+}