aboutsummaryrefslogtreecommitdiffstats
path: root/util/point.sh
blob: ce7dcc56dfa7b4c1e1a78aec27aa83ca10f93923 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

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