linux shell 获取curl返回值


对shell语法不熟,有个这样的需求,用crontab每天定时执行一次xxx.sh,xxx.sh里面的逻辑是这样的:curl不断请求http://xxx.com/xxx.php,xxx.php会输出1111和0000,当xxx.php输出1111时,继续请求xxx.php,直到输出0000,xxx.sh执行结束,请问下这个xxx.sh该怎么写?谢谢

Linux shell

izane 9 years, 7 months ago
   
  result=$(curl http://xxx.com/xxx.php)
 

约翰史密斯 answered 9 years, 7 months ago

Your Answer