mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
12 lines
192 B
Bash
Executable file
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
|