freebsd-dev/crypto/openssl/util/point.sh
2003-10-01 12:32:41 +00:00

11 lines
121 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"