次のコマンドを実行する必要があります。
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