View of /trunk/hippo/osdetect.sh
Parent Directory
|
Revision Log
Revision 135 -
(download)
(as text)
(annotate)
Sun Mar 7 12:38:03 2010 UTC (3 years, 3 months ago) by mjm
File size: 236 byte(s)
Sun Mar 7 12:38:03 2010 UTC (3 years, 3 months ago) by mjm
File size: 236 byte(s)
Hippo Release v0.6.2
#!/bin/sh
# Written by Mana Janus
set -e
if (uname | fgrep -i linux >/dev/null); then
echo "linux"
exit
fi
if (uname | fgrep -i cygwin >/dev/null); then
echo "cygwin"
exit
fi
echo Unknown system `uname` >&2
exit 1
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

