Bash 스크립트 오류: ./step-2.sh: 9행: ((:i=: 구문 오류: 피연산자 필요(오류는 "="로 표시됨)

Bash 스크립트 오류: ./step-2.sh: 9행: ((:i=: 구문 오류: 피연산자 필요(오류는 "="로 표시됨)

다음과 같은 bash 스크립트가 있습니다.

#!/bin/bash

## This script extracts snapshot times from EDS such that RMSD between chosen consecutive frames lie within a narrow range: say 0.45-0.60 Å. Play with these limits in order to find optimal values


rm snap-time-mtd.txt
low_limit=0.45
up_limit=0.60 

for ((i=1; i<=501; i=$j))
do
# check RMSD to target; if it is smaller than lower limit then we are done
echo 3 3 | gmx rms -f pdb/$(($i-1)).pdb -s active-"6".pdb -o test.xvg
rm '#'*
rmsd=$(tail -1 test.xvg | awk '{print $2*10}')
check=$(echo "$rmsd > $low_limit" | bc)
if [ $check == 1 ] 
then
j=$(awk -v low="$low_limit" -v up="$up_limit" -v frame="$i" 'BEGIN {RS=""; FS="\n"} NR==frame {for(k=frame;k<=NF;k++){ if($k>=low && $k<=up){print k; break} } } END{}' rmsd-matrix/matrix.txt)
echo $rmsd
echo $(($i-1)) >> snap-times.txt
else
break
fi
done

이 오류가 계속 발생합니다.

./step-2.sh: line 10: ((: i=: syntax error: operand expected (error token is "=")

관련 정보