vote up 0 vote down star

Is anyone aware of a bash command that can be used to parse CSV files?

To do things like:

csvparse -c 2,5,6 filename

to extract fields from columns 2 5 and 6 from all rows.

It should be able to handle the csv file format: http://tools.ietf.org/html/rfc4180 which means quoting fields and escaping inner quotes as appropriate, so for an example row with 3 fields:

field1,"field, number ""2"", has inner quotes and a comma",field3

so that if I request field 2 for the row above I get:

field, number "2", has inner quotes and a comma

I appreciate that there are numerous solutions, perl, awk (etc..) to this problem but I would like a native bash command line tool that does not require me to invoke some other scripting environment or write any additional code (!).

flag

2  
Can you clarify why you don't want to use awk/Perl etc., since these tools are perfect for this ? – Brian Agnew Jun 30 at 11:43
I don't want to write any scripts and want to use something prepackaged for the job :-) (In exactly the same way as I don't write a sort or grep tool everytime I want to use one). I realise that the functionality I'm asking for is slightly less generic that the average shell tool but would be immensely useful nonetheless - hence the question. – Joel Jun 30 at 12:46
2  
I would expect this kind of operation to be extremely slow in Bash. AWK or cut are the right tools for this job. – RobS Jun 30 at 12:56
Aren't bash commands such as sort, ls, cat etc all written using c libraries? I'm not asking for a script written in bash, but a tool the equivalent of sort, uniq etc. – Joel Jun 30 at 13:14
1  
If you want a tool with this functionality without doing a script, you're going have to write that tool yourself. Using bash tools what you want is definitely possible though. – samoz Jun 30 at 13:37

5 Answers

vote up 3 vote down check

My FOSS CSV stream editor CSVfix does exactly what you want.

Edit: For anyone interested in a Linux/UNIX version, I've posted a (hopefully) compilable source file tarball on the page linked above.

link|flag
This looks like exactly what I want. Will download it and try to get it running. – Joel Jun 30 at 14:49
BTW - thanks for not answering a) "why not write one yourself?" b) "use awk/perl". If I had wanted to use either of those 2 options I wouldn't have bothered asking the question in the first place. – Joel Jun 30 at 14:51
1  
Just realised that you may be using UN*X, in which case the published source will need a little work to remove some Windowisms. If you are not up to doing this yourself, then mail me via the CSVfix support group & I will do it - it's something I've been prevaricating about for too long anyway :-( – Neil Butterworth Jun 30 at 15:03
2  
@Joel: The problem is the way you worded your question. You asked for a "bash command" when you should have said "standalone program". Your request has nothing at all to do with bash. – Dennis Williamson Jun 30 at 17:01
yes, fair point – Joel Jun 30 at 18:09
show 1 more comment
vote up 1 vote down

This sounds like a job for awk.

You will most likely need to write your own script for your specific needs, but this site has some dialogue about how to go about doing this.

You could also use the cut utility to strip the fields out.

Something like:

cut -f 2,5,6 -d , filename

where the -f argument is the field you want and -d is the delimeter you want. You could then sort these results, find the unique ones, or use any other bash utility. There is a cool video here about working with CSV files from the command line. Only about a minute, I'd take a look.

However, I guess you could group the cut utility with awk and not want to use it. I don't really know what exactly you mean by native bash command though, so I'll still suggest it.

link|flag
I don't want to use Perl or awk. Apologies for not being specific enough in the question - I'll update it to reflect this. – Joel Jun 30 at 11:26
This will become exponentially harder using just bash commands. You might want to check if you can use awk, because if you have bash, you most likely have awk already. – samoz Jun 30 at 11:59
> "cut -f 2,5,6 -d , filename" - this will not work when the CSV fields contain commas and quotes, as per tools.ietf.org/html/rfc4180 which describes is much more than simply splitting on commas. Hence the -1 – Joel Jun 30 at 12:54
vote up 0 vote down

A quick google reveals an awk script that seems to handle csv files.

link|flag
vote up 0 vote down

My gut reaction would be to write a script wrapper around Python's csv module (if there isn't already such a thing).

link|flag
vote up -1 vote down

I would bet $100 that there is no such csv-specific tool -- at least, not that comes pre-installed on a standard linux distro. Why don't you write it in C for yourself? I just wrote a CSV parser last week in a couple of hours. Yes, it handles quoted strings.

link|flag
1  
Care to put it up on the web somewhere for code review? – John Machin Jul 27 at 2:42
Sorry, I didn't mean to come off sounding arrogant. I was just trying to encourage him to give coding it a try. Sometimes I have found that when I have a very limited and specific need it's easier to just write code for it than to search around for the just-right tool. I have had programmers include whole libraries of utilities into a project just to call one function -- IMO that's not efficient and it makes for a messy codebase. – eeeeaaii Jul 30 at 20:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.