OpenBSD 7.1: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== General information == OpenBSD 7.1 was released on [https://distrowatch.com/?newsid=11521 2022-04-21]. It contains 11329 packages with a total size of 53.005.315.563 bytes (50549 MiB). === How to determine package stats === wget http://ftp.eu.openbsd.org/pub/OpenBSD/7.0/packages/amd64/ -Oopenbsd70packages.html # Number of packages grep "<a href" openbsd70packages.html | wc -l # Total size of all packages grep "<a href" openbsd70packages.html | awk -F' ' '{prin...") |
m (Corrected stats) |
||
Line 1: | Line 1: | ||
== General information == | == General information == | ||
OpenBSD 7.1 was released on [https://distrowatch.com/?newsid=11521 2022-04-21]. It contains | OpenBSD 7.1 was released on [https://distrowatch.com/?newsid=11521 2022-04-21]. It contains 11305 packages with a total size of 55.082.195.966 bytes (52530 MiB). | ||
=== How to determine package stats === | === How to determine package stats === | ||
wget http://ftp.eu.openbsd.org/pub/OpenBSD/7. | wget http://ftp.eu.openbsd.org/pub/OpenBSD/7.1/packages/amd64/ -Oopenbsd70packages.html | ||
# Number of packages | # Number of packages | ||
grep "<a href" | grep "<a href" openbsd71packages.html | wc -l | ||
# Total size of all packages | # Total size of all packages | ||
grep "<a href" | grep "<a href" openbsd71packages.html | awk -F' ' '{print $NF}' | awk '{sum+=$1}END{print sum}' | ||
[[Category:OpenBSD]] | [[Category:OpenBSD]] | ||
[[Category:BSD]] | [[Category:BSD]] |
Latest revision as of 16:30, 13 May 2023
General information
OpenBSD 7.1 was released on 2022-04-21. It contains 11305 packages with a total size of 55.082.195.966 bytes (52530 MiB).
How to determine package stats
wget http://ftp.eu.openbsd.org/pub/OpenBSD/7.1/packages/amd64/ -Oopenbsd70packages.html # Number of packages grep "<a href" openbsd71packages.html | wc -l # Total size of all packages grep "<a href" openbsd71packages.html | awk -F' ' '{print $NF}' | awk '{sum+=$1}END{print sum}'