mirror of
https://github.com/bstansell/conserver.git
synced 2024-12-22 06:07:49 +00:00
20 lines
302 B
Bash
Executable File
20 lines
302 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $Id: system,v 1.4 1999-01-15 15:35:44-08 bryan Exp $
|
|
#
|
|
|
|
PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/ucb
|
|
|
|
s=`uname -s`
|
|
r=`uname -r`
|
|
|
|
case "$s-$r" in
|
|
SunOS-5.*) p="SunOS5" ;;
|
|
BSD/OS-3.*) p="BSDOS3" ;;
|
|
Linux-2.*) p="Linux2" ;;
|
|
IRIX-6.*) p="IRIX6" ;;
|
|
*) p="" ;;
|
|
esac
|
|
|
|
echo $p
|