systype.sh

来自「apue第二版每一章节的c语言源码」· Shell 代码 · 共 34 行

SH
34
字号
 # (leading space required for Xenix /bin/sh)## Determine the type of *ix operating system that we're# running on, and echo an appropriate value.# This script is intended to be used in Makefiles.# (This is a kludge.  Gotta be a better way.)#if (test -f /vmunix)then	if (test -f /usr/bin/sun)	then		echo "sun"	elif (test -f /bsd)	then		echo "bsdi"	else		echo "bsd"	fielif (test -f /xenix)then	echo "xenix"elif (test -f /boot/vmlinuz)	#ththen				#th	echo "redhat50linux"	#thelif (test -d /proc)then	echo "svr4"elif (test -f /etc/lddrv)then	echo "non_rh_unixpc"	#thfi

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?