当前位置:首页 >> 脚本专栏

shell实现数字打印从100到200的数

复制代码 代码如下:
#!/bin/bash
#name: print number from 100 to 200
for i in $(seq 100 200)
do
echo $i
done