vote up 5 vote down star
1

I wish to copy the top 1000 lines in a text file containing more than 50 million entries, to another new file, and also delete these lines from the original file.

Is there some way to do the same with a single shell command in Unix?

flag

1  
@gagneet: What is the high-level task you're trying to accomplish? Are you splitting the file into chunks, or what? There is probably an alternative that avoids rewriting the entire file as these answers all do. – Phil H Apr 29 at 6:14
@Phil my answer doesn't rewrite the entire file – marcog Apr 29 at 6:44
@Phil: I wish to convert some lines in the original file to another format. For the same, I need to first derive the lines from this BIG file, and then convert and copy them to another file. But parsing through this file is taking a long time and the machine gets hung, as almost 11G of memory is being used. – gagneet Apr 29 at 10:49
You might want to profile with a subset of your file. In particular, using 'time' to test whether sed and other core utils on your system, as well as whatever else you're using to parse your files, are operating on the filesystem or in memory. – Alex Reynolds Apr 29 at 16:16

6 Answers

vote up 9 vote down check
head -1000 input > output && sed -i '1,+999d' input

For example:

$ cat input 
1
2
3
4
5
6
$ head -3 input > output && sed -i '1,+2d' input
$ cat input 
4
5
6
$ cat output 
1
2
3
link|flag
sed: 1: "input": command i expects \ followed by text – Alex Reynolds Apr 29 at 5:55
See example -- it works for me. – marcog Apr 29 at 6:00
This still gives the same error message. – Alex Reynolds Apr 29 at 6:00
You tried the example I pasted? :-/ – marcog Apr 29 at 6:01
@Alex, do you have a file named 'input'? – Journeyman Programmer Apr 29 at 6:03
show 4 more comments
vote up 2 vote down

Perl approach:

perl -ne 'if($i<1000) { print; } else { print STDERR;}; $i++;' in 1> in.new 2> out && mv in.new in
link|flag
vote up 1 vote down

This is a one-liner but uses four atomic commands:

head -1000 file.txt > newfile.txt; tail +1000 file.txt > file.txt.tmp; cp file.txt.tmp file.txt; rm file.txt.tmp
link|flag
He wants to move the first 1000 lines from one file to another. This deletes all but the first 1000 lines, i.e. is wrong. – marcog Apr 29 at 5:53
You're right. I'll edit this to fix it. – Alex Reynolds Apr 29 at 5:56
With "more than 50 million entries" that tail will be quite slow. – marcog Apr 29 at 6:00
Why are you doing "cp file.txt.tmp file.txt; rm file.txt.tmp" instead of "mv file.txt.tmp file.txt"? – Espo Apr 29 at 6:20
1  
cp and rm are atomic filesystem operations. mv is not. – Alex Reynolds Apr 29 at 6:26
show 1 more comment
vote up 1 vote down
head -1000 file.txt > first100lines.txt
tail --lines=+1001 file.txt > restoffile.txt
link|flag
Upvoted, until I noticed the "and also delete these lines from the original file" requirement. – Brian Campbell Apr 29 at 5:42
This does not delete lines from the original file. – Alex Reynolds Apr 29 at 5:44
2  
Have patience. Removing the first 1000 lines and writing it back out takes a long, long time. – le dorfier Apr 29 at 6:02
vote up 1 vote down

Out of curiosity, I found a box with a GNU version of sed (v4.1.5) and tested the (uncached) performance of two approaches suggested so far, using an 11M line text file:

$ wc -l input
11771722 input

$ time head -1000 input > output; time tail -n +1000 input > input.tmp; time cp input.tmp input; time rm input.tmp

real    0m1.165s
user    0m0.030s
sys     0m1.130s

real    0m1.256s
user    0m0.062s
sys     0m1.162s

real    0m4.433s
user    0m0.033s
sys     0m1.282s

real    0m6.897s
user    0m0.000s
sys     0m0.159s

$ time head -1000 input > output && time sed -i '1,+999d' input

real    0m0.121s
user    0m0.000s
sys     0m0.121s

real    0m26.944s
user    0m0.227s
sys     0m26.624s

This is the Linux I was working with:

$ uname -a
Linux hostname 2.6.18-128.1.1.el5 #1 SMP Mon Jan 26 13:58:24 EST 2009 x86_64 x86_64 x86_64 GNU/Linux

For this test, at least, it looks like sed is slower than the tail approach (27 sec vs ~14 sec).

link|flag
vote up -3 vote down

Looks like a job for awk.

link|flag
Some people might actually prefer a solution rather than a vague pointer. This seems helpful only in the very broadest sense of that word. – paxdiablo Apr 29 at 7:17

Your Answer

Get an OpenID
or

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