我试试:
while [[ $c -le $n]]
do
now=$(date +"%T")
echo "Tps at :- $now"
@c=$c+1
done
我得到了:
syntax error in conditional expression
syntax error near `do'
有人能弄明白什么是错的吗?
答案 0 :(得分:8)
在关闭测试表达式之前需要一个空格
while [[ $c -le $n ]]
用“”包围你的变量以避免一些痛苦的错误:
while [[ "$c" -le "$n" ]]