いくつかの追加変数を含むテキスト ファイルを出力する bash スクリプトの作成を検討しています。以下を参照してください。
このような内容のテキストファイルが欲しい
bot1
bot2
bot3
そして、bashスクリプトに次のように出力させます
--exclude-agent="bot1" --exclude-agent="bot2" --exclude-agent="bot3"
これは可能ですか?そのため、その最初のファイルに別の行を追加すると、別の --exclude-agent="whatever I put in the file" が出力されるだけです
現時点では、近いですが、私が望むものではありません
#!/bin/bash
while read line
do
echo "--exclude-agent="$line" \\"
done < bots.txt
どんな助けでも素晴らしいでしょう!