#!/bin/sh# toolcheck -- check for tools that have severe bugs. Good that all the buggy# tools identify by version numbers. This is the spirit of GNU :-)## 24.7.95 jw.retval=0reply="`sh -version -c exit 2>&1 < /dev/null`"case "$reply" inGNU*1.14.3*)echo "- sh is '$reply'";echo " CAUTION: This shell has a buggy 'trap' command.";echo " The configure script may fail silently.";retval=1;;;GNU*)echo "- sh is '$reply' - probably OK.";;;*) ;;esacreply="`sed --version 2>&1 < /dev/null`"case "$reply" inGNU\ sed\ version\ 2.0[34])echo "- sed is '$reply'";echo " CAUTION: This sed cannot configure screen properly."retval=1;;;GNU\ sed\ version\ 2.05|GNU\ sed\ version\ 2.03\ kevin)echo "- sed is '$reply' - good.";;;GNU*) echo "- sed is '$reply'.";;;*) ;;esacexit $retval
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。