技术改变生活

博客园 首页 新随笔 联系 订阅 管理

2020年7月13日 #

摘要: [root@x112 linshi]# cat count2.sh #!/bin/bash i=0 while [ $i -le 100 ] do #let sum=sum+i #sum=$((sum+i)) sum=$[sum+i] let i++ done echo "the count is 阅读全文
posted @ 2020-07-13 17:00 小阿峰 阅读(438) 评论(0) 推荐(0) 编辑