The following simple version control script is meant to find the last version number of a given file, increment it, run a given command with the newly created file (e.g., editor), and after that save it to stable. Since it's simple, it doesn't check anything since the script would be modified as needed. For instance, if the result won't be stable, the user can omit the last argument.

However, one major concern of the current functionality is how to implement the following: if the last section after dot has two digits, inc untill 99; if only 1, then inc until 9, then move to the previous section. The versions may have any positive integer number of sections.

1.2.3.44 -> 1.2.3.45
1.2.3.9 -> 1.2.4.0
1.2.3 -> 1.2.4
9 -> 10

The remaining issue is that it doesn't wait for a tabbed wine editor to close the file; the goal is to detect when the tab is closed. Also, could you explain how best to make sure that my variable names don't overwrite existing ones?

You can also offer other improvements.

#!/bin/bash
#Tested on bash 4.1.5
#All arguments in order: "folder with file" "file pattern" cmd [stable name]
folder="$1"
file_pattern="$2"
cmd="$3"
stable="$4"

cd "$folder"
last_version=$(ls --format=single-column --almost-all |grep "$file_pattern" |sed -nr 's/^[^0-9]*(([0-9]+\.)*[0-9]+).*/\1/p' |sort -Vu |tail -n 1)
last_version_file=$(ls --format=single-column --almost-all |grep "$file_pattern" |grep $last_version |tail -n 1) #tail -n 1 is only needed to get 1 line if there are backup files with the same version number
new_version=$(echo $last_version |gawk -F"." '{$NF+=1}{print $0RT}' OFS="." ORS="") #increments last section indefinitely
new_version_file=$(echo "$last_version_file" |sed -r "s/$last_version/$new_version/")
cp "$last_version_file" "$new_version_file"
"$cmd" "$new_version_file" & wait #works with gedit but not with wine tabbed editor
[[ "$stable" ]] && cp "$new_version_file" "$stable" #True if the length of string is non-zero.

Update: The following works on my pc, I will update it if improvements or solutions to unsolved problems are found:

#!/bin/bash
inc()
{
shopt -s extglob
    num=${last_version//./}
    let num++

    re=${last_version//./)(}
    re=${re//[0-9]/.}')'
    re=${re#*)}

    count=${last_version//[0-9]/}
    count=$(wc -c<<<$count)
    out=''
    for ((i=count-1;i>0;i--)) ; do
        out='.\'$i$out
    done

    sed -r s/$re$/$out/ <<<$num
}

folder="$1"
file_pattern="$2"
cmd="$3"
stable="$4"

cd "$folder"
last_version=$(ls --format=single-column --almost-all |grep "$file_pattern" |sed -nr 's/^[^0-9]*(([0-9]+\.)*[0-9]+).*/\1/p' |sort -Vu |tail -n 1) #--almost-all do not list implied . and ..
last_version_file=$(ls --format=single-column --almost-all |grep "$file_pattern" |grep $last_version |tail -n 1) #tail -n 1 is only needed to get 1 line if there are backup files with the same version number
new_version=$(inc)
new_version_file=$(echo "$last_version_file" |sed -r "s/$last_version/$new_version/")
cp "$last_version_file" "$new_version_file"
"$cmd" "$new_version_file" && wait #works with gedit but not tabbed wine editor
[[ "$stable" ]] && cp "$new_version_file" "$stable" #True if the length of string is non-zero.

I appreciate the variety of solutions that have been offered, for they help with gaining a perspective and drawing a comparison.

link|improve this question

60% accept rate
i've never used the wine tabbed editor, so can't assist there, but please elaborate on what you mean by '..make sure that my variable names don't overwrite existing ones..' - what is the context of that? special shell variables or vars in your script? – venzen Dec 28 '11 at 8:29
1  
what about 9.9.9? Be 9.10.0 or 10.0.0? – kev Dec 28 '11 at 8:58
I meant any tabbed editor run by wine, e.g., Notepad Tabs. As for folders, I mean if a person uses $folder themselves, e.g., for their editor command: alias edit="$folder\Notepad2" then it might not work properly within this script. – nnn Dec 28 '11 at 9:03
I think 9.9.9 should go to 10.0.0. – nnn Dec 28 '11 at 9:05
@nnn I've updated to support 10.0.0 – kev Dec 28 '11 at 13:00
feedback

migrated from superuser.com Dec 28 '11 at 7:32

This question came from our site for computer enthusiasts and power users.

5 Answers

$ echo 1.2.3.4 | awk -F. -v OFS=. 'NF==1{print ++$NF}; NF>1{if(length($NF+1)>length($NF))$(NF-1)++; $NF=sprintf("%0*d", length($NF), ($NF+1)%(10^length($NF))); print}'
1.2.3.5

1.2.3.9  => 1.2.4.0
1.2.3.44 => 1.2.3.45
1.2.3.99 => 1.2.4.00
1.2.3.999=> 1.2.4.000
1.2.9    => 1.3.0
999      => 1000

UPDATE:

#!/usr/bin/gawk -f

BEGIN{
    v[1] = "1.2.3.4"
    v[2] = "1.2.3.44"
    v[3] = "1.2.3.99"
    v[4] = "1.2.3"
    v[5] = "9"
    v[6] = "9.9.9.9"
    v[7] = "99.99.99.99"
    v[8] = "99.0.99.99"
    v[9] = ""

    for(i in v)
        printf("#%d: %s => %s\n", i, v[i], inc(v[i])) | "sort | column -t"
}

function inc(s,    a, len1, len2, len3, head, tail)
{
    split(s, a, ".")

    len1 = length(a)
    if(len1==0)
        return -1
    else if(len1==1)
        return s+1

    len2 = length(a[len1])
    len3 = length(a[len1]+1)

    head = join(a, 1, len1-1)
    tail = sprintf("%0*d", len2, (a[len1]+1)%(10^len2))

    if(len2==len3)
        return head "." tail
    else
        return inc(head) "." tail
}

function join(a, x, y,    s)
{
    for(i=x; i<y; i++)
        s = s a[i] "."
    return s a[y]
}

$ chmod +x inc.awk
$ ./inc.awk
#1:  1.2.3.4      =>  1.2.3.5
#2:  1.2.3.44     =>  1.2.3.45
#3:  1.2.3.99     =>  1.2.4.00
#4:  1.2.3        =>  1.2.4
#5:  9            =>  10
#6:  9.9.9.9      =>  10.0.0.0
#7:  99.99.99.99  =>  100.00.00.00
#8:  99.0.99.99   =>  99.1.00.00
#9:  =>           -1
link|improve this answer
Awesome. ++++++ – nnn Dec 28 '11 at 8:56
1  
yikes! why have i been ignoring awk all these years? – venzen Dec 28 '11 at 9:33
I tried to test your updated version, but it hangs my pc and never prints anything. – nnn Dec 29 '11 at 0:20
@nnn Try removing a, from function inc(s, a, len1, len2, len3, head, tail). Can you post the error message? – kev Dec 29 '11 at 1:16
That worked. Why did that make a difference? – nnn Dec 29 '11 at 6:38
show 1 more comment
feedback

Determining a version number for a software project is based on its relative change / functionality / development stage / revision. Consequent increments to the version and revision numbering is ideally a process that should be done by a human. However, not to second-guess your motivation for writing this script, here is my suggestion.

Include some logic in your script that will do exactly what you describe in your requirement

"...if the last section after dot has two digits, inc until 99; if only 1, then inc until 9 ... "

Assuming the third position is the development stage number $dNum and the fourth (last) position is the revision number $rNum:

if  [ $(expr length $rNum) = "2" ] ; then 
    if [ $rNum -lt 99 ]; then 
        rNum=$(($rNum + 1))
    else rNum=0
         dNum=$(($dNum + 1)) #some additional logic for $dNum > 9 also needed
    fi
elif [ $(expr length $dNum) = "1" ] ; then
    ...
    ...
fi

Perhaps a function will allow the most succinct way of handling all positions (majNum.minNum.dNum.rNum).

You will have to separate the project name and version number components of your filename in your script and then construct the version number with all its positions, and finally reconstruct the filename with something like

new_version="$majNum.minNum.$dNum.$rNum"
new_version_file="$old_file.$new_version"

Hope that helps and check this SO discussion as well as this wikipedia entry if you want to know more about versioning conventions.

link|improve this answer
feedback

Using just bash, wc and sed:

#! /bin/bash
for v in 1.2.3.44 1.2.3.9 1.2.3 9 1.4.29.9 9.99.9 ; do
    echo -n $v '-> '

    num=${v//./}
    let num++

    re=${v//./)(}
    re=${re//[0-9]/.}')'
    re=${re#*)}

    count=${v//[0-9]/}
    count=$(wc -c<<<$count)
    out=''
    for ((i=count-1;i>0;i--)) ; do
        out='.\'$i$out
    done

    sed -r s/$re$/$out/ <<<$num
done
link|improve this answer
Works great. +++ – nnn Dec 29 '11 at 0:24
feedback

Pure Bash:

increment_version ()
{
  declare -a part=( ${1//\./ } )
  declare    new
  declare -i carry=1

  for (( CNTR=${#part[@]}-1; CNTR>=0; CNTR-=1 )); do
    len=${#part[CNTR]}
    new=$((part[CNTR]+carry))
    [ ${#new} -gt $len ] && carry=1 || carry=0
    [ $CNTR -gt 0 ] && part[CNTR]=${new: -len} || part[CNTR]=${new}
  done
  new="${part[*]}"
  echo -e "${new// /.}"
} 

version='1.2.3.44'

increment_version $version

result:

1.2.3.45

The version string is split and stored in the array part. The loop goes from the last to the first part of the version. The last part will be incremented and possibly cut down to its original length. A carry is taken to the next part.

link|improve this answer
On my pc, it prints spaces instead of periods, but otherwise it works properly. + it has an explanation. – nnn Dec 29 '11 at 0:24
Problem mentioned in nnn's comment is fixed. – fgm Dec 29 '11 at 9:37
feedback

Tired of bash? Why not try Perl?

$ cat versions
1.2.3.44
1.2.3.9
1.2.3
9

$ cat versions | perl -ne 'chomp; print join(".", splice(@{[split/\./,$_]}, 0, -1), map {++$_} pop @{[split/\./,$_]}), "\n";'
1.2.3.45
1.2.3.10
1.2.4
10

Not quite in compliance with the requirement, of course.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.