mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
9 lines
88 B
Bash
Executable file
9 lines
88 B
Bash
Executable file
#!/bin/bash
|
|
|
|
i="0"
|
|
|
|
while [ $i -lt 150000 ]
|
|
do
|
|
echo message number $i
|
|
i=$[$i+1]
|
|
done
|