1#!/bin/sh
2
3rm -f "$2"
4if test "$OSTYPE" = msdosdjgpp || test "x$PLATFORM" = xmingw ; then
5    cp "$1" "$2"
6else
7    ln -s "$1" "$2"
8fi
9echo "$2 => $1"
10
11