point.sh   [plain text]


#!/bin/sh

rm -f "$2"
if test "$OSTYPE" = msdosdjgpp; then
    cp "$1" "$2"
else
    ln -s "$1" "$2"
fi
echo "$2 => $1"