12e5b6d6dSopenharmony_ci#!/usr/bin/perl -w 22e5b6d6dSopenharmony_ci 32e5b6d6dSopenharmony_ci# 42e5b6d6dSopenharmony_ci# Copyright (C) 2017 and later: Unicode, Inc. and others. 52e5b6d6dSopenharmony_ci# License & terms of use: http://www.unicode.org/copyright.html 62e5b6d6dSopenharmony_ci# 72e5b6d6dSopenharmony_ci 82e5b6d6dSopenharmony_ciuse strict; 92e5b6d6dSopenharmony_ci 102e5b6d6dSopenharmony_cimy $localeMinusA = `cat /home/weiv/src/icu/source/extra/colprobe/locale.txt`; 112e5b6d6dSopenharmony_cimy @locales = split(/\n/, $localeMinusA); 122e5b6d6dSopenharmony_cimy $locale; 132e5b6d6dSopenharmony_cimy $command; 142e5b6d6dSopenharmony_ci 152e5b6d6dSopenharmony_ciforeach $locale (@locales) { 162e5b6d6dSopenharmony_ci if($locale =~ /_/ && !($locale =~ /^#/)) { 172e5b6d6dSopenharmony_ci $command = "/home/weiv/src/icu/source/extra/colprobe/doComparisonTable.pl $locale"; 182e5b6d6dSopenharmony_ci print "$command\n"; 192e5b6d6dSopenharmony_ci `$command`; 202e5b6d6dSopenharmony_ci } 212e5b6d6dSopenharmony_ci} 22