mirror of
https://github.com/AquaMorph/dotfiles.git
synced 2025-04-30 17:46:59 +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";
|
|
}
|