mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
11 lines
190 B
Awk
11 lines
190 B
Awk
BEGIN { FS="[|)]" }
|
|
|
|
/^[ \t]*([0-9]+)\|([^)]+)\)$/ {
|
|
model=$2
|
|
}
|
|
|
|
/^[ \t]*target="[^"]+"$/ {
|
|
match($0, "=\".+\"")
|
|
target=substr($0, RSTART+2, RLENGTH-3)
|
|
print target, model
|
|
}
|