BAN-AI-Communications/k95-mingw

View on GitHub
openssl-0.9.7/util/point.sh

Summary

Maintainability
Test Coverage
#!/bin/sh
 
Double quote to prevent globbing and word splitting.
rm -f $2
In POSIX sh, OSTYPE is undefined.
if test "$OSTYPE" = msdosdjgpp; then
Double quote to prevent globbing and word splitting.
cp $1 $2
else
Double quote to prevent globbing and word splitting.
ln -s $1 $2
fi
echo "$2 => $1"