将结果分配给Bash中的变量

前端之家收集整理的这篇文章主要介绍了将结果分配给Bash中的变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的同事Ryan在他的Bash脚本中遇到了一个bug,我确定了这个测试的问题:
$ mkdir ryan
$ mkdir ryan/smells-bad
$ FOO=ryan/smells-*
$ echo $FOO
ryan/smells-bad
$ touch $FOO/rotten_eggs
touch: cannot touch `ryan/smells-*/rotten_eggs': No such file or directory

从此我推断出,在echo命令中发生了globbing,而不是当创建变量FOO时。

我们有几个解决方法,按照不礼貌的降序排列:

touch `echo $FOO`/rotten_eggs

要么:

pushd
cd $FOO
touch rotten_eggs
popd

但也不令人满意。我错过了一个技巧吗?

问题是,如果文件“rotten_eggs”存在,则glob将会扩展,因为它包含在glob模式中。你应该使用一个数组。
FOO=( ryan/smells-* )
touch "${FOO[@]/%//rotten_eggs}"

FOO数组包含由glob匹配的所有内容。使用%追加/ rotten_eggs到每个元素的扩展。

原文链接:https://www.f2er.com/bash/388034.html

猜你在找的Bash相关文章