⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 systype.sh

📁 unix环境高级编程一书源代码 本书全面介绍了UNIX系统的程序设计界面—系统调用界面和标准C库提供的许多函数。 本书的前15章着重于理论知识的阐述
💻 SH
字号:
 # (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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -