为什么我的Bash脚本中出现“意外令牌'done'附近的语法错误”?

时间:2018-12-26 20:26:05

标签: bash

我有这个Bash脚本:

#!/bin/bash

while read -r line; do
    ip="$line"
    torify ./PRET/pret.py $ip pjl -q -i ./commands.txt
done < "./potential_bros.txt"

为什么会出现此错误?

commands.txt =

print ./message.pdf
display Completed
quit

potential_bros.txt =我的IP

PRET = https://github.com/RUB-NDS/PRET

1 个答案:

答案 0 :(得分:0)

我无法重现此错误。有效的示例:

$ cat t.sh
while read -r line ; do
  echo $line
done  < t.txt

$ cat t.txt
item1
item2
item3

$ ./t.sh
item1
item2
item3