Now listening: banco de gaia -- heliopolis
Add a note
![]() |
You are viewing Create a LiveJournal Account Learn more |
$ gawk 'BEGIN {
url = "http://repository.maemo.org"
}
/^Directory: / {
dir = $2
}
/^Files:/ {
getline;
while ($0) {
printf "wget '%s/%s/%s'\n", url, dir, $3;
getline;
if (substr($0, 0, 1) != " ")
break;
}
}' < Sources | sh |