#!/bin/sh rm -f $2 if test $OSTYPE = msdosdjgpp || test "x$PLATFORM" = xmingw { cp $1 $2 } else { ln -s $1 $2 } echo "$2 => $1"