Need to update the text file with next version of deployment(V1,V2,V3)


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need to update the text file with next version of deployment(V1,V2,V3)
# 8  
Old 08-30-2017
Thanks Rudic..I will modify my code by considering your code.
# 9  
Old 08-31-2017
Hi.

There is a de facto standard for version strings:
Quote:
The standard GNU version numbering scheme is major.minor.revision
-- Software versioning - Wikipedia

There are utilities available for this, including some from GNU:
Code:
Modify, maintain version strings, version,revision,level

	1) rvs (local), Revise version string, version.revision.level.

	2) shtool-version, maintain version information file
	   See man shtool, man shtool-version:
	   ... compilation of small but very stable and portable shell scripts

The shtool installation includes man pages, such as:
Code:
NAME
       shtool-version - GNU shtool maintain version information file

SYNOPSIS
       shtool version [-l|--language lang] [-n|--name name] [-p|--prefix
       prefix] [-s|--set version] [-e|--edit] [-i|--increase knob]
       [-d|--display type] file

DESCRIPTION
       This command displays and maintains version information in file.
...

A few details about shtool:
Code:
shtool  The GNU Portable Shell Tool (man)
Path    : /usr/bin/shtool
Version : GNU shtool 2.0.8 (18-Jul-2008)
Length  : 4087 lines
Type    : POSIX shell script, ASCII text executable, with very long lines
Shebang : #!/bin/sh
Help    : probably available with -h,--help
Repo    : Debian 8.8 (jessie) 
Home    : http://www.gnu.org/software/shtool/ (pm)

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

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to manipulate a text file and store each version for every changes in a directory?

I attached both picturehttps://1drv.ms/t/s!Aoomvi55MLAQh1jODfUxa-xurns_ and *.txt file of a sample work file. In this file Reactions which only start with "r1f", "r2f", "r3f"......and so on. And for each reaction the reaction rates is situated couple of lines later with a "+" sign. For each... (1 Reply)
Discussion started by: Atta
1 Replies

2. UNIX for Beginners Questions & Answers

awk to update file with partial matching line in another file and append text

In the awk below I am trying to cp and paste each matching line in f2 to $3 in f1 if $2 of f1 is in the line in f2 somewhere. There will always be a match (usually more then 1) and my actual data is much larger (several hundreds of lines) in both f1 and f2. When the line in f2 is pasted to $3 in... (4 Replies)
Discussion started by: cmccabe
4 Replies

3. Shell Programming and Scripting

Update specific field in a line of text file

I have a text file like this: subject1:LecturerA:10 subject2:LecturerA:40 if I was given string in column 1 and 2 (which are subject 1 and LecturerA) , i need to update 3rd field of that line containing that given string , which is, number 10 need to be updated to 100 ,for example. The... (6 Replies)
Discussion started by: bmtoan
6 Replies

4. Red Hat

Specify version in yum update

Hello All, I am trying to upgrade redhat from 5.6 to 5.8. When i use Code: yum update -y it installs 5.9 I dont want 5.9, instead i would like to upgrade to 5.8 is there anyway to specify a version when you are doing Code: yum update (4 Replies)
Discussion started by: adam25ca
4 Replies

5. UNIX for Dummies Questions & Answers

Auto Version update

We have a version for every file like RHZ 1.0 / Ver 1.4.2 etc. Whenever I place a new file with same file name i want the version to get auto upgraded. So can anyone suggest code.. Eg: RHX 1.0 -> RHZ 1.1 Ver 1.4.2. -> Ver 1.4.3 (1 Reply)
Discussion started by: krishna87
1 Replies

6. Solaris

Update java version in Zone

I am using a solaris zone in Sun blade-T6320 which has a java version "1.5.0_18" i want to update it to 1.6.0.16 or higher , how can i do that , does i need to add the new java package to the global server or just instal it in the zone itself. do i need to remove the older version or and install... (1 Reply)
Discussion started by: Sojourner
1 Replies

7. Shell Programming and Scripting

Update strings in text file

I have a txt file that contains multiple occurrances of: <MoreFlag>Y</MoreFlag> I want to update these to: MorePACFlag>Y</MorePACFlag> How would I do this? Cheers Paul (2 Replies)
Discussion started by: runnerpaul
2 Replies

8. Red Hat

war file deployment

Hi Experts. I need to install one help library in Fedora 13 and I got the installation document for it: --------------------------------------------------- users need their own J2EE web application server to be able to complete this installation. The server must support J2EE - JSP... (3 Replies)
Discussion started by: orma
3 Replies

9. Shell Programming and Scripting

Trying to Parse Version Information from Text File

I have a file name version.properties with the following data: major.version=14 minor.version=234 I'm trying to write a grep expression to only put "14" to stdout. The following is not working. grep "major.version=(+)" version.properties What am I doing wrong? (6 Replies)
Discussion started by: obfunkhouser
6 Replies
Login or Register to Ask a Question