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

📄 testincl

📁 Util-linux 软件包包含许多工具。其中比较重要的是加载、卸载、格式化、分区和管理硬盘驱动器
💻
字号:
#!/bin/sh## call:#	COMPILE=...; export COMPILE#	if ./testincl [-q] "foo.h" ...#echo=echocase $1 in -q)    echo=":"    shift    ;;esacIFILE="<$1>"echo "#include $IFILEmain(){ exit(0); }" > conftest.ceval $COMPILE# Brian Murphy asks not to run conftest since that fails on cross-compilation.# Maybe just testing for the existence of conftest suffices.# if test -s conftest && ./conftest 2>/dev/null; thenif test -s conftest 2>/dev/null; then	res=0	$echo "You have $IFILE"else        res=1	$echo "You don't have $IFILE"firm -f conftest conftest.cexit $res

⌨️ 快捷键说明

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