X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FDEVEL%2Fpxp%2Fpxp%2Ftools%2Fcollect_files;fp=helm%2FDEVEL%2Fpxp%2Fpxp%2Ftools%2Fcollect_files;h=0000000000000000000000000000000000000000;hb=bb2953675ebb08267186029b18bc3fdca9c137df;hp=d1770eb4a89dbb7f0dabc6e6c0156c6bdd42326d;hpb=1cfcea66d7394a785ec439cd6b03497b276918c4;p=helm.git 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. -#