mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-27 13:23:22 +00:00
37620fb0e5
Script by Kazuo Teramoto
14 lines
249 B
Awk
Executable File
14 lines
249 B
Awk
Executable File
#!/bin/awk -f
|
|
|
|
BEGIN {
|
|
FS = "|";
|
|
}
|
|
|
|
!/qaa-qtz/ {
|
|
printf(" { %-83s \"%s\", %s, %s },\n", "\""$4"\",", $1, $3 ? "\""$3"\"" : "NULL", $2 ? "\""$2"\"" : "NULL ");
|
|
}
|
|
|
|
END {
|
|
printf(" { %-83s %s, %s, %s },\n", "NULL,", "NULL", "NULL", "NULL");
|
|
}
|