1

我需要执行以下命令:

melt color:"#eeeeee"  -filter dynamictext:"this text"

"this text"是来自title.txt文件的字符串。

我使用这种方法读取文件:

while IFS='' read -r line || [[ -n "$line" ]]; do
     echo $line 
done < "title.txt"

问题是如何-filter dynamictext:"this text"在 bash 循环中制作为字符串,然后最终执行:

melt color:"#eeeeee" $string

我使用了这段代码,但到目前为止没有运气:

while IFS='' read -r line || [[ -n "$line" ]]; do
   string="$string -filter dynamictext:\"$line\""
done < "title.txt"

融化错误:Failed to load "text"

title.txt包含:

this text
second text
anothe text
4

1 回答 1

2

使用数组;这是他们被引入处理的确切用例。

while IFS= read -r line; do
    options+=(-filter dynamictext:"$line")
done < title.txt
melt color:#eeeeee "${options[@]}"

修复title.txt它以正确地以换行符结尾。

于 2016-10-05T19:17:05.970 回答