我想为文本文件的每一行运行一次bash命令。
如果我这样做:
while read l; do
echo $l;
done < myfile.txt
我让每一条线都回响。
但是当我使用我的实际命令时:
while read l; do
curl -X POST http://somedomain -H "Content-Type: application/json" -d $l
done < myfile.txt
我收到错误。我认为它可能与文本文件中的转义字符有关,但我尝试过的任何工作都没有。为文本文件的每一行运行一次curl表达式的正确方法是什么?
答案 0 :(得分:3)
使用引号。
foocmd ... "$l"