Plasma GitLab Archive
Projects Blog Knowledge

#! /bin/sh
#
# $Id: collect_files,v 1.1 2002-02-13 00:29:42 stolpmann Exp $
# ----------------------------------------------------------------------
#
# 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: collect_files,v $
# Revision 1.1  2002-02-13 00:29:42  stolpmann
# 	Initial revision for wdialog
#
# Revision 1.1  2001/10/04 01:56:23  stolpmann
# 	Initial revision
#
# Revision 1.1  2000/07/27 21:07:26  gerd
# 	Initial revision.
#

This web site is published by Informatikbüro Gerd Stolpmann
Powered by Caml