mirror of
https://github.com/dnlbauer/dotfiles.git
synced 2026-09-10 13:35:30 +00:00
23 lines
469 B
Awk
Executable File
23 lines
469 B
Awk
Executable File
/string *"xesam:artist/{
|
|
while (1) {
|
|
getline line
|
|
if (line ~ /string "/) {
|
|
sub(/.*string "/, "artist:", line)
|
|
sub(/".*$/, "", line)
|
|
print line
|
|
break
|
|
}
|
|
}
|
|
}
|
|
/string *"xesam:title/{
|
|
while(1) {
|
|
getline line
|
|
if (line ~ /string "/) {
|
|
sub(/.*string "/, "title:", line)
|
|
sub(/".*$/, "", line)
|
|
print line
|
|
break
|
|
}
|
|
}
|
|
}
|