Sponsored Content
Full Discussion: File compare in UNIX
Top Forums Shell Programming and Scripting File compare in UNIX Post 302956565 by rakeshtomar82 on Thursday 1st of October 2015 06:30:23 AM
Old 10-01-2015
File compare in UNIX

I have two files which is having components and its version inside that,

cat file1
Code:
com.acc.invm:FNS_PROD [94.0.5]
com.acc.invm:FNS_TEST_DCCC_Mangment [94.1.6]
com.acc.invm:FNS_APIPlat_BDMap [100.0.9]
com.acc.invm:SendEmail [29.6.113]
com.acc.invm:SendSms [12.23.65]

cat file2
Code:
com.acc.invm:FNS_PROD 94.0.5
com.acc.invm:FNS_TEST_DCCC_Mangment 94.0.6
com.acc.invm:FNS_APIPlat_BDMap 100.0.10


needed output is if component from file1 is having higher version than file2, and component which is not in file2.

In this example
desired output is
Code:
com.acc.invm:FNS_TEST_DCCC_Mangment [94.1.6]
com.acc.invm:SendEmail [29.6.113]
com.acc.invm:SendSms [12.23.65]


Last edited by Don Cragun; 10-01-2015 at 02:50 PM.. Reason: Add CODE and ICODE tags.
 

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Help- Unix File Compare- Struggling

I had posted this earlier about 3 weeks ago and had recieved a response and I did sort both the files and the comm command is still not working. Can someone please assist me, I would really appreciate it. Below is what I am trying to do I need to compare File A with File B and create FILE C... (2 Replies)
Discussion started by: guiguy
2 Replies

2. Programming

compare XML/flat file with UNIX file system structure

Before i start doing something, I wanted to know whether the approach to compare XML file with UNIX file system structure. I have a pre-configured file(contains a list of paths to executables) and i need to check against the UNIX directory structure. what are the various approches should i use ? I... (6 Replies)
Discussion started by: shafi2all
6 Replies

3. Shell Programming and Scripting

Unix script to compare the two file

Hi, I want to compare two | delimited files.Awk is not working in my unix box.So plz give alternate solutions. Please see the below code: file1=$1 file2=$2 num_of_records_file1=`awk ' END { print NR } ' $file1` num_of_records_file2=`awk ' END { print NR } ' $file2` i=1 while do... (4 Replies)
Discussion started by: autosys_nm
4 Replies

4. Shell Programming and Scripting

Compare two files in UNIX

Hi, I have two files File1 Contents: abc dcf sdc File2 Contents: dcf sdc erg Now my program should return the contents existing in File1 but not in File2. In this case output shoud be "abc" as abc is not available in File 2. It should not return "erg" by saying it is... (4 Replies)
Discussion started by: forums123456
4 Replies

5. Homework & Coursework Questions

Compare to values in a file in unix

Here is sample file ===============Index 0=================== isActive=0, Input=1, Output=1, Status=1 State = Future , PRIMARY UnderCount=2 inCount=2 outCount=0 SCount=673 -- ===============Index 1=================== isActive=0, Input=1, Output=1, Status=1 ... (1 Reply)
Discussion started by: sooda
1 Replies

6. UNIX for Dummies Questions & Answers

Compare two file in UNIX

Hi, how to compare all the differences from two files in unix ? plz provide the screenshots. Thanks, Dasaradha (1 Reply)
Discussion started by: dasaradha
1 Replies

7. Shell Programming and Scripting

Compare output of UNIX command and match data to text file

I am working on an outage script and I run a command from the command line which tells me the amount of generator failures in my market. The output of this command only gives me three digits to identify the site by. I have a master list of all sites in a separate file, call it list.txt. If my... (7 Replies)
Discussion started by: jbrass
7 Replies

8. Shell Programming and Scripting

Shell script (sh file) logic to compare contents of one file with another file and output to file

Shell script logic Hi I have 2 input files like with file 1 content as (file1) "BRGTEST-242" a.txt "BRGTEST-240" a.txt "BRGTEST-219" e.txt File 2 contents as fle(2) "BRGTEST-244" a.txt "BRGTEST-244" b.txt "BRGTEST-231" c.txt "BRGTEST-231" d.txt "BRGTEST-221" e.txt I want to get... (22 Replies)
Discussion started by: pottic
22 Replies
GO::Parsers::base_parser(3pm)				User Contributed Perl Documentation			     GO::Parsers::base_parser(3pm)

NAME
GO::Parsers::base_parser - base class for parsers SYNOPSIS
do not use this class directly; use GO::Parser DESCRIPTION
AUTHOR
show_messages Usage - Returns - Args - normalize_files Usage - @files = $parser->normalize_files(@files) Returns - Args - takes a list of filenames/paths, "glob"s them, uncompresses any compressed files and returns the new file list litemode Usage - $p->litemode(1) Returns - Args - bool when set, parser will only throw the following events: id|name|is_a|relationship|namespace (optimisation for fast parsing) acc2name_h Usage - $n = $p->acc2name_h->{'GO:0003673'} Returns - hashref Args - hashref [optional] gets/sets a hash mapping IDs to names this will be automatically set by an ontology parser a non-ontology parser will use this index to verify the parsed data (see $p->acc_not_found($id), below) acc_not_found Usage - if ($p->acc_not_found($go_id)) { warn("$go_id not known") } Returns - bool Args - acc string uses acc2name_h - if this hash mapping has been created AND the acc is not in the hash, THEN it is considered not found This is useful for non-ontology parsers (xref_parser, go_assoc_parser) to check whether a referenced ID is actually present in the ontology note that if acc2name_h has not been created, then accs cannot be considered not-found, and this will always return 0/false perl v5.14.2 2010-07-24 GO::Parsers::base_parser(3pm)
All times are GMT -4. The time now is 12:06 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy