openssl-0.9.7/util/point.sh
#!/bin/sh Double quote to prevent globbing and word splitting.rm -f $2In POSIX sh, OSTYPE is undefined.if test "$OSTYPE" = msdosdjgpp; thenDouble quote to prevent globbing and word splitting. cp $1 $2elseDouble quote to prevent globbing and word splitting. ln -s $1 $2fiecho "$2 => $1"