Run this bash script
#!/bin/bash
versions="4.2
4.3
4.4
4.5"
for i in $versions; do
echo -n "podman version=$i http_code="
curl -s -o /dev/null -w "%{http_code}\n" https://docs.podman.io/en/v${i}/markdown/podman-run.1.html
done
output:
podman version=4.2 http_code=200
podman version=4.3 http_code=200
podman version=4.4 http_code=200
podman version=4.5 http_code=404
I expected the output to be
podman version=4.2 http_code=200
podman version=4.3 http_code=200
podman version=4.4 http_code=200
podman version=4.5 http_code=200
because Podman version 4.5.1 has already been released.
Maybe the result is related to the list of Podman versions
on this web page?
https://readthedocs.org/projects/podman/