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=e108abe5c0b4eb841c4ad332229a6c0e57e70079;hp=d1770eb4a89dbb7f0dabc6e6c0156c6bdd42326d;hpb=1456c337a60f6677ee742ff7891d43fc382359a9;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. -#