openssl1.0/util/point.sh

11 lines
152 B
Bash
Raw Normal View History

2019-08-09 10:00:55 +02:00
#!/bin/sh
rm -f "$2"
if test "$OSTYPE" = msdosdjgpp || test "x$PLATFORM" = xmingw ; then
cp "$1" "$2"
else
ln -s "$1" "$2"
fi
echo "$2 => $1"