SHELL-条件输出(简单)

[root@room9pc01 opt]# vim test21.sh

#!/bin/bash
a=10

while [ $a -gt 5 ]
do
   echo abc 
   let a--
done

发布了46 篇原创文章 · 获赞 0 · 访问量 407

猜你喜欢

转载自blog.csdn.net/weixin_45942735/article/details/104286902