Is there any way to compare such strings on bash:
2.4.5 and 2.8 and 2.4.5.1
etc
|
|
|
Here is a pure Bash version that doesn't require any external utilities:
Run the tests:
|
|||||||||||
|
|
If you have coreutils-7 (in Ubuntu Karmic but not Jaunty) then your sort command should have a -V option (version sort) which you could use to do the comparison:
|
|||
|
|
There probably is no universally correct way to achieve this. If you are trying to compare versions in the Debian package system try |
|||
|
is a good starting point. |
|||
|
You can recursively split on
|
|||
|
|
For old version/busybox
This is escpecial useful on version which contains alpha symbols like
|
|||
|
|
|
I came across and solved this problem, to add an additional (and shorter and simpler) answer... First note, extended shell comparison failed as you may already know...
Using the sort -t'.'-g (or sort -V as mentioned by kanaka) to order versions and simple bash string comparison I found a solution. The input file contains versions in columns 3 and 4 which I want to compare. This iterates through the list identifying a match or if one is greater than the other. Hope this may still help anyone looking to do this using bash as simple as possible.
Thanks to Barry's blog for the sort idea... ref: http://bkhome.org/blog/?viewDetailed=02199 |
||||
|
|