OpenBSD 7.3

From MK Wiki EN
Revision as of 15:58, 1 November 2023 by MkWikiEnSysOp (talk | contribs) (Created page with "== General information == OpenBSD 7.3 was released on [https://distrowatch.com/?newsid=11807 2023-04-10]. It contains 11768 packages with a total size of 64.552.737.685 bytes (61562 MiB). === How to determine package stats === wget http://ftp.eu.openbsd.org/pub/OpenBSD/7.3/packages/amd64/ -Oopenbsd73packages.html # Number of packages grep "<a href" openbsd73packages.html | wc -l # Total size of all packages grep "<a href" openbsd73packages.html | awk -F' ' '{prin...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

General information

OpenBSD 7.3 was released on 2023-04-10. It contains 11768 packages with a total size of 64.552.737.685 bytes (61562 MiB).

How to determine package stats

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