mirror of
https://github.com/mpv-player/mpv
synced 2024-12-09 16:36:15 +00:00
1aef871541
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1506 b3059339-0415-0410-9bf9-f77b7e298cf2
12 lines
235 B
Awk
Executable File
12 lines
235 B
Awk
Executable File
#!/usr/bin/awk -f
|
|
# only for mostly 2-byte encodings like euc-kr
|
|
|
|
$2~"^/x..$" {
|
|
c = substr($2, 3, 2)
|
|
if (c<"80")
|
|
print substr($1, 3, 4) "\t" c
|
|
}
|
|
$2~"^/x../x..$" {
|
|
print substr($1, 3, 4) "\t" substr($2, 3, 2) substr($2, 7, 2)
|
|
}
|