aboutsummaryrefslogtreecommitdiff
path: root/openssl/util/point.sh
blob: 4790e08f8a618657a9c32024f36d4b2099229f00 (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"