vote up 1 vote down star

I have a very large CSV file and I need to write an app that will parse it but using the >6GB file to test against is painful, is there a simple way to extract the first hundred or two lines without having to load the entire file into memory?

The file resides on a Debian server.

flag

3 Answers

vote up 5 vote down check

Did you try the head command?

head -200 inputfile > outputfile
link|flag
Nice answer I've never heard of head... thanks. – Unkwntech Feb 4 at 13:04
Use "-n 200" instead of "-200". The latter is deprecated syntax. – David Schmitt Feb 4 at 13:07
The GNU documentation says it's "obsolete" but I've not seen anyone else declare it deprecated. The Solaris docs, for example, lists both methods but offers no preference. – Stephen Darlington Feb 4 at 13:33
vote up 0 vote down
  • head -10 file.csv > truncated.csv

    will take the first 10 lines of file.csv and store it in a file named truncated.csv

link|flag
vote up 0 vote down

"The file resides on a Debian server."- this is interesting. This basically means that even if you use 'head', where does head retrieve the data from? The local memory (after the file has been copied) which defeats the purpose.

link|flag
Judging by the accepted answer, I think it's fair to assume that the OP mentioned Debian to ensure posters knew the target OS. – David Grant Feb 4 at 13:11
Weird. Why then was it even mentioned? – Amit Feb 4 at 13:12
Gave the impression that he was trying to partially pull it from the server.. – Amit Feb 4 at 13:13

Your Answer

Get an OpenID
or

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