aboutsummaryrefslogtreecommitdiffstats
path: root/test/output.sh
blob: 2be188e3a33e50bd5db6e7ab631f729a7c07853c (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/bash

i="0"

while  [ $i -lt 150000 ]
do
	echo message number $i
	i=$[$i+1]
done