summaryrefslogtreecommitdiff
path: root/perf/utf8.sh
blob: 51d49c5991969e260f7c8c7fa5d29b06181960ce (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

cnt=$1
[ -n "$cnt" ] || cnt=6000

i=0 
while [ $i -lt $cnt ]
do
 	cat UTF-8-demo.txt
 	i=$(( $i + 1 ))
done