Welcome to mirror list, hosted at ThFree Co, Russian Federation.

point.sh « util - github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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"