1
0
Fork 0
gnome-terminal/subprojects/vte/perf/utf8.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

11 lines
119 B
Bash
Executable file

#!/bin/sh
cnt=$1
[ -n "$cnt" ] || cnt=6000
i=0
while [ $i -lt $cnt ]
do
cat UTF-8-demo.txt
i=$(( $i + 1 ))
done