openssl/util/point.sh
Richard Levitte 451dc18f10 Add support for DJGPP.
PR: 75
2002-06-13 20:42:35 +00:00

10 lines
111 B
Bash
Executable file

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