shell 的 while无限循环问题!
#! /bin/bash
while 1
do
echo "sdsd"
done
为什么运行的时候出现错误呢,1:Command not found.
[解决办法]
while true
发布时间: 2012-09-21 15:47:26 作者: rapoo
shell 的 while无限循环问题!
#! /bin/bash
while 1
do
echo "sdsd"
done
为什么运行的时候出现错误呢,1:Command not found.
[解决办法]
while true