first commit

This commit is contained in:
Your Name
2022-10-20 20:29:11 +08:00
commit 4d531f8044
3238 changed files with 1387862 additions and 0 deletions

21
scripts/atis/find_nonUTF8.pl Executable file
View File

@@ -0,0 +1,21 @@
#! /usr/bin/perl
my($content, $length);
open(FILE, "< airports.vlist") || die "Unable to open file small. <$!>\n";
while( chomp($content = <FILE>) ) {
$length = length($content);
for( $i = 0; $i < $length; $i++ ) {
if( ord(substr($content, $i, 1)) > 127 )
{
print "$content\n";
last;
}
}
}
close(FILE);
exit 0