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

2019-09-23 09:49:33于海丽

#!/bin/bash
#name: print number from 100 to 200
for i in $(seq 100 200)
do
echo $i
done