firejail/test/environment/output.sh
2016-06-13 12:04:35 -04:00

9 lines
88 B
Bash
Executable file

#!/bin/bash
i="0"
while [ $i -lt 150000 ]
do
echo message number $i
i=$[$i+1]
done