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 8393583
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T19:49:46+00:00 2026-06-09T19:49:46+00:00

I have a very large (500mb) csv file and another textfile containing one word

  • 0

I have a very large (500mb) csv file and another textfile containing one word per line.

When I find a word in the textfile in the csv in a specific collumn I want to output the line (will redirect output to a file). I had a grep solution using grep -iE “(word1|word2|word3|…|wordn)” but it crashed after using 16gb memory with a segfault and only extracted very few entries.

I tried csvtool but it refuses to produce anything valueable.

The solution must work under linux and optimally not cap on memory.

  • 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-09T19:49:48+00:00Added an answer on June 9, 2026 at 7:49 pm

    Use awk. Process the file with one word per line first, save its data in an array and for the second file check the specific column using the expression if (column in array):

    awk '
        BEGIN {
            FS = OFS = ",";
        }
        FNR == NR {
            data[ $1 ] = 1;
            next;
        }
        FNR < NR {
            if ( $4 in data ) {
                print $0;
            }
        }
    ' textfile large_csv_file
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very large gzip csv file (around 500GB) which I need to
I have one very large text file(27GB) that I am attempting to make smaller
I have a very large Excel sheet converted from a 6000 page PDF file,
I have a very large data file with around 60000 rows. I need to
I have a very large XML file which has like 40000 data, and when
I am working with a very large text file (500MB+) and the code I
I have a very large file that looks like this (see below). I have
I have an app that downloads a very large file (over 50MB). Unfortunately I'm
I have a very large UIView approx 3000x3000 in size. In this large view
I have a very large table of over 9 million rows and in my

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.