X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Finterface%2Furis_of_filenames.pl;fp=helm%2Finterface%2Furis_of_filenames.pl;h=0000000000000000000000000000000000000000;hb=c7514aaa249a96c5fdd39b1123fbdb38d92f20b6;hp=019730bee5b39a948d79308e886f8e23bb735d09;hpb=1c7fb836e2af4f2f3d18afd0396701f2094265ff;p=helm.git diff --git a/helm/interface/uris_of_filenames.pl b/helm/interface/uris_of_filenames.pl deleted file mode 100755 index 019730bee..000000000 --- a/helm/interface/uris_of_filenames.pl +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/perl - -while() { - chomp; - split / /; - for (@_) { - $GZSUFF = ""; - if (/.gz$/) - { s/.gz$//; $GZSUFF = " gz" if ($ARGV[0] == "-gz"); } - if (/.*\.(con|var|ind)(\.types)?\.xml/) - { s/\./cic:/; } - elsif (/.*\.theory\.xml/) - { s/\./theory:/; } - s/\.xml//; - print $_.$GZSUFF."\n"; - } -}