X-Git-Url: http://matita.cs.unibo.it/gitweb/?p=helm.git;a=blobdiff_plain;f=helm%2FDEVEL%2Fpxp%2Fpxp%2Ftools%2Fcollect_files;fp=helm%2FDEVEL%2Fpxp%2Fpxp%2Ftools%2Fcollect_files;h=0000000000000000000000000000000000000000;hp=d1770eb4a89dbb7f0dabc6e6c0156c6bdd42326d;hb=3ef089a4c58fbe429dd539af6215991ecbe11ee2;hpb=1c7fb836e2af4f2f3d18afd0396701f2094265ff diff --git a/helm/DEVEL/pxp/pxp/tools/collect_files b/helm/DEVEL/pxp/pxp/tools/collect_files deleted file mode 100755 index d1770eb4a..000000000 --- a/helm/DEVEL/pxp/pxp/tools/collect_files +++ /dev/null @@ -1,25 +0,0 @@ -#! /bin/sh -# -# $Id$ -# ---------------------------------------------------------------------- -# -# usage: collect_files file ... -# -# Prints the names of the files passed as arguments which actually -# exist and are regular files. - -for x in "$@"; do - if [ -f "$x" ]; then - echo "$x" - fi -done - -# ====================================================================== -# -# $Log$ -# Revision 1.1 2000/11/17 09:57:35 lpadovan -# Initial revision -# -# Revision 1.1 2000/07/27 21:07:26 gerd -# Initial revision. -#