vte2.91/perf/utf8.sh

12 lines
119 B
Bash
Raw Normal View History

2022-05-14 03:16:03 +08:00
#!/bin/sh
cnt=$1
[ -n "$cnt" ] || cnt=6000
i=0
while [ $i -lt $cnt ]
do
cat UTF-8-demo.txt
i=$(( $i + 1 ))
done