mkmakefile.tcldefs.sh.in

来自「关系型数据库 Postgresql 6.5.2」· IN 代码 · 共 24 行

IN
24
字号
#! /bin/shif [ ! -r @TCL_CONFIG_SH@ ]; then    echo "@TCL_CONFIG_SH@ not found"    echo "I need this file! Please make a symbolic link to this file"    echo "and start make again."    exit 1fi# Source the file to obtain the correctly expanded variable definitions. @TCL_CONFIG_SH@# Read the file a second time as an easy way of getting the list of variable# definitions to output.cat @TCL_CONFIG_SH@ |    egrep '^TCL_|^TK_' |    sed 's/^\([^=]*\)=.*$/\1/' |    while read var    do	eval echo "\"$var = \$$var\""    done >Makefile.tcldefsexit 0

⌨️ 快捷键说明

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