Sponsored Content
Top Forums Shell Programming and Scripting Need Help Comparing two Files Post 302230836 by awknerd on Sunday 31st of August 2008 06:35:54 PM
Old 08-31-2008
Error Need Help Comparing two Files

I really need help on creating a script that does the following:

I have one file (File 1) with lines in the following format:

Name.maf score1 score2


I have a second file (File 2) with lines in the following format:

label start end Name

What I need to do is compare File 1 and File 2. When the Name matches, then I need to add the "label, "start" and "end" column's value of File 2 to the 2nd, third and fourth column of File 1 to get

Output

Name.maf label start end score1 score2

The trick here too is that what needs to match is only the Name, not the entire Name.maf. e.g. hello.maf and hello would be Name matches.

Any help would be very much appreciated! Thanks! Smilie

Last edited by awknerd; 08-31-2008 at 07:50 PM..
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

comparing shadow files with real files

Hi I need to compare shadow file sizes with their real file counterparts. If the shadow file size differs form the realfile size then it must send a mail. My problem is that our system has over 1600 shadowfiles in different directories, with different names. the only consistancy is the .sh file... (4 Replies)
Discussion started by: terrym
4 Replies

2. Shell Programming and Scripting

Comparing files

I have a file called X, which contains the following: 10 100 200 300 I then have file Y, which containts the following: 10 200 500 800 I want to write a script that will compare the contents of Y with the contents of X and ONLY return values in Y that does not exist in X (output... (5 Replies)
Discussion started by: soliberus
5 Replies

3. Shell Programming and Scripting

Need help comparing two files and deleting some things in those files!

So I have two files: File1 pictures.txt 1.1 1.3 dance.txt 1.2 1.4 treehouse.txt 1.3 1.5 File2 pictures.txt 1.5 ref2313 1.4 ref2345 1.3 ref5432 1.2 ref4244 dance.txt 1.6 ref2342 1.5 ref2352 1.4 ref0695 1.3 ref5738 1.2 ref4948 1.1 treehouse.txt 1.6 ref8573 1.5 ref3284 1.4 ref5838... (24 Replies)
Discussion started by: linuxkid
24 Replies

4. UNIX for Dummies Questions & Answers

Comparing two files

HI ALL, i have two files each with three columns. i need to compare the row in file 1 is present in file 2 using FOR loop. Please Help. Thanks in Advance Regards, Arun Manas (1 Reply)
Discussion started by: arunmanas
1 Replies

5. Shell Programming and Scripting

Comparing the matches in two files using awk when both files have their own field separators

I've two files with data like below: file1.txt: AAA,Apples,123 BBB,Bananas,124 CCC,Carrot,125 file2.txt: Store1|AAA|123|11 Store2|BBB|124|23 Store3|CCC|125|57 Store4|DDD|126|38 So,the field separator in file1.txt is a comma and in file2.txt,it is | Now,the output should be... (2 Replies)
Discussion started by: asyed
2 Replies

6. UNIX for Advanced & Expert Users

How to find duplicates contents in a files by comparing other files?

Hi Guys , we have one directory ...in that directory all files will be set on each day.. files must have header ,contents ,footer.. i wants to compare the header,contents,footer ..if its same means display an error message as 'files contents same' (7 Replies)
Discussion started by: Venkatesh1
7 Replies

7. Shell Programming and Scripting

Help with comparing two files

Hi all I have to compare two file this time one is P11223 x1124 x1145 t5678 e3456 z2345 another file P11223 x s (2 Replies)
Discussion started by: manigrover
2 Replies

8. Shell Programming and Scripting

Comparing the files

Hi Friends, I have file1.txt file2.txt I tried using the diff and comm but not getting the expected output.. I want where exactly the miss match occurs. probably the field. Sourcevalue|Targetvalue|Linenumber|field 29123975|2923975|3|1 Please help. (6 Replies)
Discussion started by: i150371485
6 Replies

9. Shell Programming and Scripting

Comparing files in a directory against an array of files

I hope I can explain this correctly. I am using Bash-4.2 for my shell. I have a group of file names held in an array. I want to compare the names in this array against the names of files currently present in a directory. If the file does not exist in the directory, that is not a problem.... (5 Replies)
Discussion started by: BudMan
5 Replies

10. UNIX for Beginners Questions & Answers

Comparing two files and list the difference with common first line content of both files

I have two file as given below which shows the ACL permissions of each file. I need to compare the source file with target file and list down the difference as specified below in required output. Can someone help me on this ? Source File ************* # file: /local/test_1 # owner: own #... (4 Replies)
Discussion started by: sarathy_a35
4 Replies
crypt(1)						      General Commands Manual							  crypt(1)

Name
       crypt - encode/decode (available only if the Encryption layered product is installed)

Syntax
       crypt key < input.File > output.File

Description
       This reference page describes software that is available only if the Encryption layered product is installed.

       The  command reads from the standard input and writes on the standard output.  You must supply a key which selects a particular transforma-
       tion.  If no password is given, demands a key from the terminal and turns off printing while the  key  is  being  typed	in.   The  command
       encrypts and decrypts with the same key.

       Files encrypted by are compatible with those treated by the ed, ex and vi editors in encryption mode.

       The security of encrypted files depends on three factors: the fundamental method must be hard to solve, direct search of the key space must
       be infeasible, and sneak paths by which keys or clear text can become visible must be minimized.

       The command implements a one-rotor machine designed along the lines of the German Enigma, but with a 256-element rotor.	Methods of  attack
       on such machines are known, but not widely; moreover the amount of work required is likely to be large.

       The transformation of a key into the internal settings of the machine is deliberately designed to be expensive, for example, to take a sub-
       stantial fraction of a second to compute.  However, if keys are restricted to three lowercase letters, then encrypted files can be read	by
       expending only a substantial fraction of five minutes of machine time.

       Since  the  key	you choose is an argument to the command, it is potentially visible to users executing ps(1) or a derivative.  To minimize
       this possibility, destroys any record of the key immediately upon entry.  The most vulnerable aspect of is the choice of keys and key secu-
       rity.

Examples
       The following examples use KEY as the key to encrypt and decrypt files.	The first example encrypts the file naming the resulting encrypted
       file The second example decrypts the file naming the resulting decrypted file The third example prints the encrypted file in clear text.
       crypt KEY < plain.File > crypt.File
       crypt KEY < crypt.File > decrypt.File
       crypt KEY < crypt.File | pr

Files
       for typed   key

See Also
       ed(1), ex(1), vi(1), xsend(1), crypt(3), makekey(8)

																	  crypt(1)
All times are GMT -4. The time now is 04:50 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy