#!/bin/sh
for n
do	echo File: "$n"
	relink -d `find . -name "$n" -print`
done
exit 0
# This takes a list of files on the command line, does a find on  each
# from  the current directory, and runs relink on all the copies found
# of each.  This isn't very fast; it also gets into trouble  if  there
# are too many file names, due to the very long command line.
