1 Star 0 Fork 3

chengpiaopiao/APUE

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
systype.sh 467 Bytes
一键复制 编辑 原始数据 按行查看 历史
jiangwei 提交于 2020-10-03 00:11 . [ADD]上传APUE源代码.
# (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.)
#
case `uname -s` in
"FreeBSD")
PLATFORM="freebsd"
;;
"Linux")
PLATFORM="linux"
;;
"Darwin")
PLATFORM="macos"
;;
"SunOS")
PLATFORM="solaris"
;;
*)
echo "Unknown platform" >&2
exit 1
esac
echo $PLATFORM
exit 0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chengpiaopiao/apue.git
git@gitee.com:chengpiaopiao/apue.git
chengpiaopiao
apue
APUE
master

搜索帮助