desktop->shared

This commit is contained in:
Daniel Bauer
2020-02-20 10:32:33 +01:00
parent f73d80c03f
commit 683a113df7
44 changed files with 470 additions and 62 deletions

View File

@@ -0,0 +1,22 @@
/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
}
}
}