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