#!/bin/sh
# 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.

for n
do	echo File: "$n"
	relink -d `find . -name "$n" -print`
done
