按顺序打印从100到200的数的shell

发布时间:2020-10-04编辑:脚本学堂
按顺序打印从100到200的数的shell

按顺序打印从100到200的数的shell

复制代码 代码如下:

#!/bin/bash

#name: print number from 100 to 200

for i in $(seq 100 200)
do
echo $i
done