Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This

 tail -n 1217060 input.sql > /disk2/mysql_dump/output.sql
is not writing to the output file. After couple of days, does this mean it's still seeking to the nth line?
Is there a more efficient alternative to this?

share|improve this question

3 Answers

up vote 0 down vote accepted

i can't imagine anything being any better at this than tail

share|improve this answer

you could use dd

dd if=input.sql of=output.sql skip=1217060 bs=1

should work. Assuming ascii-encoding, because otherwise the offset might be wrong.

UPDATE: sorry, I just understood that you want to have the last 1217060 bytes of the file. then you have to calculate the offset yourself. du input.sql should give you the size of the file. That amount minus 1217060 should give you the skipoffset you want to use.

share|improve this answer
I want last 1217060 lines, not bytes, of the file – user121196 Mar 21 '12 at 20:35
Sorry, then I propose to try the solution indicated by Gangadhar. – twall Mar 22 '12 at 8:52

Is it not possible to split the input files to multiple files before you do this? At some point even tail will take a while to process the file. This link might be something you can try.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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