#!/bin/sh
# simplified version of program to break links to files (my)
# temp file
TMP=/usr/tmp/my.$$	# $$ is the process id of this script's shell
for f			# each command-line argument is assigned to f
do
	cp $f $TMP
	rm -f $f
	mv $TMP $f
done

