not used anymore

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5969 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1999-04-17 20:23:48 +00:00
parent e68f27788e
commit 0deae4ea84

View File

@@ -1,31 +0,0 @@
#! /bin/sh
# $Id$
if [ "$#" -lt 1 -o "$#" -gt 2 ]; then
echo "Usage: `basename $0` proto-file [output]"
exit 1
fi
infile="$1"
outfile="$2"
if [ "$outfile" = "" ]; then
outfile=`basename "$infile" .in`
fi
if rm -f "$outfile" ; then :; else
echo "Failed to remove $outfile"
exit 1
fi
d=`dirname $0`
for i in `cat "$infile"`; do
if [ -f "$i" ]; then
cat "$i" >> "$outfile"
elif [ -f "$d/$i" ]; then
cat "$d/$i" >> "$outfile"
else
echo "$i: File not found"
exit 1
fi
done