]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/http_getter/tools/uri_unescape.pl
This commit was manufactured by cvs2svn to create branch 'init'.
[helm.git] / helm / http_getter / tools / uri_unescape.pl
diff --git a/helm/http_getter/tools/uri_unescape.pl b/helm/http_getter/tools/uri_unescape.pl
deleted file mode 100755 (executable)
index 7f77d37..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/perl -w
-use strict;
-
-# unescape a URI escaped with uri escaping
-#
-# Stefano "Zack" Zacchiroli <zack@cs.unibo.it>
-#
-
-use URI::Escape;
-
-while(<>) {
- chomp;
- print uri_unescape($_);
- print "\n";
-}