Initial commit

This commit is contained in:
2025-07-21 14:28:02 +02:00
commit 84bff90664
10 changed files with 184 additions and 0 deletions

11
src/awk/artists.awk Normal file
View File

@@ -0,0 +1,11 @@
BEGIN { OFS="\t" }
$2 == "Group" { name = format_group }
$2 != "Group" { name = format_person }
{
gsub("&", "\\\\&")
if ($4)
name = name " " format_disambiguation
sub("<<disambiguation>>", $4, name)
sub("<<name>>", $3, name)
print $1, name
}