1#!/bin/sh
2# harden a link (convert it to a singly linked file)
3cp $1 $1.foo
4rm $1
5mv $1.foo $1
6
7