aboutsummaryrefslogtreecommitdiffstats
path: root/test/environment/output.sh
blob: 14c20a79a34dd9f5249af0a6b2f5eb8538bdfaac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
# This file is part of Firejail project
# Copyright (C) 2014-2020 Firejail Authors
# License GPL v2

i="0"

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