Zsh has the very handy is-at-least
utility.
is-at-least 5.7 && echo "You're using a version of Zsh above 5.7" || echo "You're running an old Zshell version. Upgrade, dude."
How can this be done in Bash? (It must be in a simple way that takes into account that version numbers can have 2 "decimal" points, and that 1.25 is higher than 1.3, unlike with decimal notation for normal numbers.)