我正在考虑创建一个 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
任何帮助都会很棒!