This commit was manufactured by cvs2svn to create branch 'unlabeled-1.25.2'.
[nethome.git] / bin / fromhex
diff --git a/bin/fromhex b/bin/fromhex
deleted file mode 100755 (executable)
index b92d1b4..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-#! /usr/bin/perl
-
-use strict;
-use warnings;
-
-while (<>) {
-       printf("%c",hex($1)) while ($_=~s/([[:xdigit:]]{2})//);
-       }