Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8968505
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T17:27:49+00:00 2026-06-15T17:27:49+00:00

I want to compare two big files with different column and row numbers and

  • 0

I want to compare two big files with different column and row numbers and print those line which have a common word (like KJ):

file1:

XT1 123 aa NR
XT2 444 bb GF 
XT3 666 aa KJ

file2

fc KK pcn
wd CC KJ

output

XT3 666 aa wd CC KJ

I tried but I didn’t get anything:

awk 'FNR==NR{a[$4]=$3;next}{if (a[$3])print a[$3],$0}' file1 file2

Thank you in advance for your help

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T17:27:50+00:00Added an answer on June 15, 2026 at 5:27 pm

    Based on the limited info you provided,

    my $file1 = '...';
    my $file2 = '...';
    
    my %file2;
    {
       open(my $fh2, '<', $file2)
          or die("Can't open \"$file2\": $!\n');
       while (<$fh2>) {
          my @F = split;
          $file2{$F[2]} = join(' ', @F[0,1]);
       }
    }
    
    {
       open(my $fh1, '<', $file1)
          or die("Can't open \"$file1\": $!\n');
       while (<$fh1>) {
          my @F = split;
          print(join(' ', @F[0..2], $file2{$F[3]}, $F[3]), "\n")
             if $file2{$F[3]};
       }
    }
    

    I assumed the following:

    • file2 fits in memory as a hash of lines.
    • A keyword doesn’t appear twice in file2.
    • You’re only interested in matching the 4th column of file1 with the 3rd column of file2.

    It maintains the order of the lines as they appear in file1.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to compare two CSV files to see if they are different. I
I want to compare two folders on Windows (Vista, XP) which have a large
I want to compare two text files that i have generated from one of
I have two big numbers (type int) which are stored in array with a
I have a simple application in which I want compare two arrays. function check()
I want to compare two times in VB.net: I have 1:42:21 PM and I
I want to compare two (or more) XMLs files by tags names and attributes
I want to compare two files (one file is located on local location and
I have two arrays, @a and @b . I want to do a compare
I'm looking to compare two big sets of csv files and/or a csv file

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.