configure--help
来自「fortran并行计算包」· 代码 · 共 27 行
TXT
27 行
#! /bin/sh# Set TSD by removing last slash and all that follows $0TSD=`echo $0 | sed 's%/[^/][^/]*$%%'`# Set TSD to be the absolute pathname to the top_srcdirif [ "$TSD" = "$0" -o "X$TSD" = "X." ] ; then TSD=`pwd`ficonfigs=`find $TSD -name configure -print | sort`prefix=""for config in $configs ; do suffix=`echo $config | sed -e 's%\(.*\)/\([^/]*\)/configure$%\2%'` if [ "x$prefix" = "x" ] ; then prefix="$suffix/" echo "****** Configure Options available in Main-Package: $prefix" else echo "****** Configure Options available in Sub-Package: $prefix$suffix" fi $config --help > tmpconfig.txt# Print from line 44 till the end from the output of `configure --help` sed -n '44,$p' tmpconfig.txt rm -f tmpconfig.txt echo ; echodone
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?