1
0
Fork 0
gnome-terminal/subprojects/vte/perf/inc.sh
Daniel Baumann 95789a9b3e
Adding upstream version 3.56.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 21:26:48 +02:00

10 lines
116 B
Bash
Executable file

#!/usr/bin/env bash
cnt=$1
[ -n "$cnt" ] || cnt=500000
x=0
while [ $x -lt $cnt ]; do
echo $x
x=$(($x + 1))
done