firejail/test/environment/output.sh
2025-12-30 08:20:44 -05:00

12 lines
192 B
Bash
Executable file

#!/bin/bash
# This file is part of Firejail project
# Copyright (C) 2014-2026 Firejail Authors
# License GPL v2
i="0"
while [[ $i -lt 150000 ]]
do
echo "message number $i"
i=$((i+1))
done