OpenBSD 6.9

From MK Wiki EN
Jump to navigation Jump to search

General information

OpenBSD 6.9 was released on 2021-05-01. It contains 11314 packages with a total size of 50.685.511.806 bytes (48337 MiB).

How to determine package stats

wget http://ftp.eu.openbsd.org/pub/OpenBSD/6.9/packages/amd64/ -Oopenbsd69packages.html
# Number of packages
grep "<a href" openbsd69packages.html | wc -l
# Total size of all packages
grep "<a href" openbsd69packages.html | awk -F' ' '{print $NF}' | awk '{sum+=$1}END{print sum}'