bash – 带空格的Shell变量,引用单个命令行选项

前端之家收集整理的这篇文章主要介绍了bash – 带空格的Shell变量,引用单个命令行选项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Autoconf脚本在使用空格的文件名或路径名时遇到问题.例如,
./configure CPPFLAGS="-I\"/path with space\""
@H_403_3@结果(config.log):

configure:3012: gcc  -I"/path with space"  conftest.c  >&5
gcc: with: No such file or directory
gcc: space": No such file or directory
@H_403_3@来自./configure的编译命令是ac_compile =’$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext>& 5′,我无法修改这个(我也许可以,但是以这种方式处理autoconf不是一般的解决方案).

@H_403_3@我认为它得到一个shell变量,其中包含要解析为单个命令行变量而不是在空格处拆分的空格.我可以想出的最简单的shell示例是创建一个带有空格的文件,并尝试列出一个带有一个shell变量的ls作为ls的参数:

$touch "a b"
$file="a b"
$ls $file
ls: a: No such file or directory
ls: b: No such file or directory
@H_403_3@这个工作,但是是非法的,因为在autoconf中我无法修改shell代码

$ls "$file"
a b
@H_403_3@以下尝试引用的事情都不行:

$file="\"a \"b"; ls $file
ls: "a: No such file or directory
ls: b": No such file or directory
$file="a\ b"
$file="a\\ b"
$file="`echo \\"a b\\"`"
@H_403_3@等等.

@H_403_3@这是不可能在shell脚本中完成的吗?有没有一个神奇的引用,将扩展一个shell变量与空格到一个命令行参数?

您应该尝试设置$IFS环境变量. @H_403_3@从男子bash(1):

@H_403_3@IFS – The Internal Field Separator that is used for word splitting
after expansion and to split lines into words with the read builtin
command. The default value is ”space tab newline”.

@H_403_3@例如

IFS=<C-v C-m>  # newline
file="a b"
touch $file
ls $file
@H_403_3@不要忘记设置$IFS回来或奇怪的事情会发生.

猜你在找的Bash相关文章