#!/bin/sh
# Given a list of file names, this script replaces them with files
# owned by the caller.  BUG:  It doesn't work with directories.
# Note also that the resulting file is new, with a new inode number.
# and a new timestamp.  It will be singly linked.  (See also relink.)
# We should perhaps use cpio to preserve timestamps.

for f
do	if [ -f $f ];then
		Rm $f 
		cp $f- $f
	fi
done
