X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fhttp_getter%2Ftools%2Furi_escape.pl;fp=helm%2Fhttp_getter%2Ftools%2Furi_escape.pl;h=0000000000000000000000000000000000000000;hb=c7514aaa249a96c5fdd39b1123fbdb38d92f20b6;hp=0303e3f738088899ae7e3a5196b9cfd6b80ccfcf;hpb=1c7fb836e2af4f2f3d18afd0396701f2094265ff;p=helm.git diff --git a/helm/http_getter/tools/uri_escape.pl b/helm/http_getter/tools/uri_escape.pl deleted file mode 100755 index 0303e3f73..000000000 --- a/helm/http_getter/tools/uri_escape.pl +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/perl -w -use strict; - -# escape a URI with uri escaping -# -# Stefano "Zack" Zacchiroli -# - - -use URI::Escape; - -while(<>) { - chomp; - print uri_escape($_); - print "\n"; -}