我是 c shell 的新手。我在使用 while 循环时遇到问题,错误消息是“目录堆栈不深”。这是我的while循环。
set i = 1
while ($i < =10)
echo $i
end
编辑:
我通过删除“<”和“=”之间的空格来解决问题。
set i = 1
while ($i <=10)
echo $i
end
我是 c shell 的新手。我在使用 while 循环时遇到问题,错误消息是“目录堆栈不深”。这是我的while循环。
set i = 1
while ($i < =10)
echo $i
end
编辑:
我通过删除“<”和“=”之间的空格来解决问题。
set i = 1
while ($i <=10)
echo $i
end