Return to md5.sh CVS log | Up to [local] / OpenXM / src / util |
version 1.2, 2006/10/14 08:30:26 | version 1.3, 2007/02/17 18:15:28 | ||
---|---|---|---|
|
|
||
#!/bin/sh | #!/bin/sh | ||
# $OpenXM: OpenXM/src/util/md5.sh,v 1.1 2006/10/13 11:51:25 ohara Exp $ | # $OpenXM: OpenXM/src/util/md5.sh,v 1.2 2006/10/14 08:30:26 ohara Exp $ | ||
_freebsd () { | _freebsd () { | ||
if [ "`which md5`" ]; then | if [ "`which md5`" ]; then | ||
|
|
||
} | } | ||
case "`uname`" in | case "`uname`" in | ||
*BSD) _freebsd "$@" ;; | *BSD|Darwin) _freebsd "$@" ;; | ||
Linux) _linux "$@" ;; | Linux) _linux "$@" ;; | ||
*) _other "$@" ;; | *) _other "$@" ;; | ||
esac | esac |