X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Fhttp_getter%2Ftools%2Furi_unescape.pl;fp=helm%2Fhttp_getter%2Ftools%2Furi_unescape.pl;h=0000000000000000000000000000000000000000;hb=869549224eef6278a48c16ae27dd786376082b38;hp=7f77d37684d9aac96cb80ff4946386139e171567;hpb=89262281b6e83bd2321150f81f1a0583645eb0c8;p=helm.git diff --git a/helm/http_getter/tools/uri_unescape.pl b/helm/http_getter/tools/uri_unescape.pl deleted file mode 100755 index 7f77d3768..000000000 --- a/helm/http_getter/tools/uri_unescape.pl +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/perl -w -use strict; - -# unescape a URI escaped with uri escaping -# -# Stefano "Zack" Zacchiroli -# - -use URI::Escape; - -while(<>) { - chomp; - print uri_unescape($_); - print "\n"; -}