Ultimately, I wanted to set the latest version as an environment variable, so supplementing the selected answer (which provided me the correct sorting):
export LATEST_VERSION=$(printf '%s\n' * | sort -rV | head -1)
I have a directory with the following directory names:
ls -1r .
2.0
1.8
16.1
16.0
15.5
15.0
14.5
14.1
14.0
1.3
1.2
1.1.5
1.1.3
1.1.2
I would like to sort them to get the latest release version:
ls -1r . | head -1
16.1
So the underlying order should look like this:
16.1
16.0
15.5
15.0
14.5
14.1
14.0
2.0
1.8
1.3
1.2
1.1.5
1.1.3
1.1.2
Any help would be greatly appreciated. Simpler the better, but I'm open to any solution. Thanks!