Linux shell脚本练习(九九乘法口诀表)
Linux shell脚本练习(九九乘法口诀表)1,创建chengfa.sh脚本,写入运行脚本。[root@localhost ~]# vim chengfa.sh#!/bin/bashfor((i=1;i<=9;i++))dofor((n=1;n<=$i;n++))doecho -n" $i x $n = ...
·
更多推荐
已为社区贡献1条内容
Linux shell脚本练习(九九乘法口诀表)1,创建chengfa.sh脚本,写入运行脚本。[root@localhost ~]# vim chengfa.sh#!/bin/bashfor((i=1;i<=9;i++))dofor((n=1;n<=$i;n++))doecho -n" $i x $n = ...
更多推荐
所有评论(0)