系统相关
首页 > 系统相关> > bash/shell 编辑注意事项

bash/shell 编辑注意事项

作者:互联网

image.png

#输出7的倍数
#!bin/bash
num=0 #注意num的 后面
while(($num<=500))
do
   if (($num%7==0)) #注意if后面需要加上空格,而且有两层括号
   then
      echo $num
   fi
    let "num++"
done

  

标签:bin,shell,while,num,注意事项,bash
来源: https://www.cnblogs.com/jerry-autumn/p/16630686.html