1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-05-05 07:44:20 +00:00
Files
Interlisp.maiko/bin/machinetype~

20 lines
413 B
Bash

#!/bin/sh
os=`./config.guess`
# o/s switch block
case "$os" in
sparc-sun-sunos*) echo sunos4 ;;
sparc-sun-solaris1*) echo sunos4 ;;
sparc-sun-solaris2*) echo sunos5 ;;
alpha-dec-osf1) echo osf1 ;;
i386-*-solaris*) echo sunos5 ;;
*-*-linux*) echo linux ;;
*-*-openbsd*) echo openbsd ;;
esac
### Don't leave the variables set.
unset os