OpenBSD 6.8: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== General information == OpenBSD 6.8 was released on [https://distrowatch.com/?newsid=11044 2020-10-18]. It contains 11238 packages with a total size of 50.472.675.186 bytes (48.134 MiB). === How to determine package stats === wget http://ftp.eu.openbsd.org/pub/OpenBSD/6.8/packages/amd64/ -Oopenbsd68packages.html # Number of packages grep "<a href" openbsd68packages.html | wc -l # Total size of all packages grep "<a href" openbsd68packages.html | awk -F' ' '{pri...") |
(No difference)
|
Revision as of 09:44, 12 May 2023
General information
OpenBSD 6.8 was released on 2020-10-18. It contains 11238 packages with a total size of 50.472.675.186 bytes (48.134 MiB).
How to determine package stats
wget http://ftp.eu.openbsd.org/pub/OpenBSD/6.8/packages/amd64/ -Oopenbsd68packages.html # Number of packages grep "<a href" openbsd68packages.html | wc -l # Total size of all packages grep "<a href" openbsd68packages.html | awk -F' ' '{print $NF}' | awk '{sum+=$1}END{print sum}'