mirror of
https://github.com/AquaMorph/dotfiles.git
synced 2025-05-16 15:36:58 +00:00
5 lines
130 B
Bash
5 lines
130 B
Bash
# Program version number comparison
|
|
function versionGreater() {
|
|
test "$(printf '%s\n' "$@" | sort -V | head -n 1)" != "$1";
|
|
}
|