本文实例为大家分享了shell打印国际象棋棋盘的具体代码,供大家参考,具体内容如下
代码如下:
#!/bin/bash
#set chess cell's width
read -p Please set the chess cell's width( two space width as unit ): width
if [[ $width =~ ^[0-9]+$ ]];then
echo wrong width setting, check your input and try agai
代码如下:#!/bin/bash#name: print number from 100 to 200for i in $(seq 100 200)doecho $idone
您可能感兴趣的文章:shell脚本打印国际象棋棋盘linux shell之控制台打印各种颜色字体和背景的实现方法shell中使用echo打印彩色字体和彩色背景的方法shell打印给定日期的日历