How to sort version numbers?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to sort version numbers?
# 1  
Old 04-19-2012
Question How to sort version numbers?

I would like to know how to sort version numbers, using bash or perl. I would like to sort file names that are program names with version numbers and extensions, such as hello-0.2.3.tar.gz and hello-0.10.3.tar.gz.

Version numbers of computer programs do not comply with the mathematical rule concerning the below-decimal-point part. Mathematics treats the part below decimal point differently from the integral part. In mathematics, the following sort order holds.

0.1 = 0.10 = 0.100 < 0.11 < 0.2 < 0.3

On the other hand, the version numbering system treats the part below decimal point in the same manner as the integral part. In the version numbering system, the following sort order holds.

0.1.0 < 0.2.0 < 0.3.0 < 0.10.0 < 0.11.0 < 0.100.0

The "sort" command on bash fails to achieve this latter result. How can one achieve this latter result?

Many thanks in advance.
# 2  
Old 04-19-2012
Hi, try:
Code:
sort -bt. -k1,1 -k2,2n -k3,3n -k4,4n -k5,5n

This User Gave Thanks to Scrutinizer For This Post:
# 3  
Old 04-19-2012
try this:

Code:
$$ sort -t"." -k 1,1 -k 2,2 -k 3,3 filename

here filename contains hello-0.2.3.tar.gz and all such patterns, one pattern per line.
# 4  
Old 04-19-2012
Hi.

Recent versions of GNU ls have an ability like this. Using your list of version strings as a-v.tar.gz
Code:
#!/usr/bin/env bash

# @(#) s1	Demonstrate sort by version, GNU ls.

# Utility functions: print-as-echo, print-line-with-visual-space, debug.
# export PATH="/usr/local/bin:/usr/bin:/bin"
pe() { for _i;do printf "%s" "$_i";done; printf "\n"; }
pl() { pe;pe "-----" ;pe "$*"; }
edges() { local _f _n _l;: ${1?"edges: need file"}; _f=$1;_l=$(wc -l $_f);
  head -${_n:=3} $_f ; pe "--- ( $_l: lines total )" ; tail -$_n $_f ; }
db() { ( printf " db, ";for _i;do printf "%s" "$_i";done;printf "\n" ) >&2 ; }
db() { : ; }
C=$HOME/bin/context && [ -f $C ] && $C ls align

pl " Results:"
( pe "Plain	Version"
paste <( ls -1 a* ) <( ls -1v a* )
) |
align

exit 0

producing:
Code:
% ./s1

Environment: LC_ALL = C, LANG = C
(Versions displayed with local utility "version")
OS, ker|rel, machine: Linux, 2.6.26-2-amd64, x86_64
Distribution        : Debian GNU/Linux 5.0.8 (lenny) 
bash GNU bash 3.2.39
ls (GNU coreutils) 6.10
align 1.7.0

-----
 Results:
Plain			Version
a-0.1.0.tar.gz		a-0.1.0.tar.gz
a-0.1.tar.gz		a-0.1.tar.gz
a-0.10.0.tar.gz		a-0.2.0.tar.gz
a-0.10.3.tar.gz		a-0.2.3.tar.gz
a-0.10.tar.gz		a-0.2.tar.gz
a-0.100.0.tar.gz	a-0.3.0.tar.gz
a-0.100.tar.gz		a-0.3.tar.gz
a-0.11.0.tar.gz		a-0.10.0.tar.gz
a-0.11.tar.gz		a-0.10.3.tar.gz
a-0.2.0.tar.gz		a-0.10.tar.gz
a-0.2.3.tar.gz		a-0.11.0.tar.gz
a-0.2.tar.gz		a-0.11.tar.gz
a-0.3.0.tar.gz		a-0.100.0.tar.gz
a-0.3.tar.gz		a-0.100.tar.gz

It appears best to have a consistent number of sub-versions in the version strings.

Best wishes ... cheers, drl
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

how to sort numbers

I have files like this: 1 3 4 6 14 3 6 I want to extract the highest number. I have tried using cat filename | sort but then 9 would become higher than 14. So how do I sort? (1 Reply)
Discussion started by: locoroco
1 Replies

2. Shell Programming and Scripting

Sort numbers which has colon (:) in between

Although i tried multiple option i couldn't find a way to get the rigt ouput. Say i have the following data cat file.txt C request C response C request C response The output should look like (9 Replies)
Discussion started by: varu0612
9 Replies

3. Shell Programming and Scripting

Is it Possible to sort a list of hexadecimal numbers using "sort" command?

Hello Everybody :) !!!. i have question in mind, is it possible to sort a list of hexadecimal numbers using "sort" command? (9 Replies)
Discussion started by: Kesavan
9 Replies

4. UNIX for Advanced & Expert Users

Script to sort the files and append the extension .sort to the sorted version of the file

Hello all - I am to this forum and fairly new in learning unix and finding some difficulty in preparing a small shell script. I am trying to make script to sort all the files given by user as input (either the exact full name of the file or say the files matching the criteria like all files... (3 Replies)
Discussion started by: pankaj80
3 Replies

5. Shell Programming and Scripting

Remove version numbers from package lists

I just upgraded my laptop from Fedora 13 to 14, and normally, before I do the upgrade (Fresh install) I run an rpm command to make a list of all the packages I have installed, but without the version and architectures specified, so that I can just feed that list to yum after the upgrade to... (2 Replies)
Discussion started by: Tsuroerusu
2 Replies

6. Shell Programming and Scripting

Sort numbers

Hello, okey so my script is using 4 variables that are either empty or numbers in the following format: NUMBER_1 NUMBER_2 NUMBER_3 NUMBER_4 So they're basically separated by a space and I need to echo the lowest number, so far I've been doing it like this: echo "2 3 1 3" | tr " "... (6 Replies)
Discussion started by: TehOne
6 Replies

7. Shell Programming and Scripting

How to Sort Floating Numbers Using the Sort Command?

Hi to all. I'm trying to sort this with the Unix command sort. user1:12345678:3.5:2.5:8:1:2:3 user2:12345679:4.5:3.5:8:1:3:2 user3:12345687:5.5:2.5:6:1:3:2 user4:12345670:5.5:2.5:5:3:2:1 user5:12345671:2.5:5.5:7:2:3:1 I need to get this: user3:12345687:5.5:2.5:6:1:3:2... (7 Replies)
Discussion started by: daniel.gbaena
7 Replies

8. Shell Programming and Scripting

Sort by numbers, then alphabetically

Hey guys, I have a file that contains the following: 366 K 364 Q 12 UB 7 INC. P 4 Law 2 LAMB 2 High 1 QEG 1 OF 1 LC 1 B As you can see, it's already sorted by numerical order, how do I sort it again, breaking the ties by using the alphabetical order of the second column, but... (2 Replies)
Discussion started by: Andrew9191
2 Replies

9. Shell Programming and Scripting

Renaming list of files with version numbers

Hi, I have a need to rename a list of files with a suffix .v1, .v2, v3 etc. and would like to keep a maximum of 6 versions. example: I have abc.sql in my current dir. and as part of a successful completion of another script I want to move abc.sql -> abc.sql.v1. When I run the original... (3 Replies)
Discussion started by: try2shell
3 Replies

10. UNIX for Dummies Questions & Answers

Comparing Version Numbers

Hi There! Apologies if this has been asked previously but I couldn't find the answer I was hoping for. Basically, all I want to do is compare the OS X version against the version that I require in my script. So I'm retrieving the OS version using defaults read, but how can I compare this... (10 Replies)
Discussion started by: davewg
10 Replies
Login or Register to Ask a Question