mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-22 00:44:48 +00:00
12 lines
193 B
Plaintext
12 lines
193 B
Plaintext
url=http://download.virtualbox.org/virtualbox/
|
|
|
|
getver_virtualbox() {
|
|
fetch \
|
|
| grep -Eo href=\"[0-9a-z.]+ \
|
|
| sed 's/href=\"//' \
|
|
| grep ^[[:digit:]] \
|
|
| grep ^5 \
|
|
| sort -V \
|
|
| uniq
|
|
}
|