SoFunction
Updated on 2025-03-10

Shell implements digital printing numbers from 100 to 200


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