随笔分类 -  bash 脚本

摘要:[root@python ~]# vim 9*9.sh #!/bin/bash for ((i=1;i<=9;i++));do for ((j=1;j<=i;j++));do if ( [ $j -eq 2 ] && [ $(($i*$j)) -eq 6 ] ) || ( [ $j -eq 2 ] && [ $(($i*$j)) -eq 8 ] ) then echo ... 阅读全文
posted @ 2018-11-29 19:19 新叶05 阅读(223) 评论(0) 推荐(0)