mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
490967195a
PR: 634
11 lines
121 B
Bash
Executable File
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"
|
|
|