This
tail -n 1217060 input.sql > /disk2/mysql_dump/output.sqlis 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?
|
This tail -n 1217060 input.sql > /disk2/mysql_dump/output.sqlis 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? |
||||
|
|
|
you could use
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. |
|||||
|
|
|
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. |
|||
|
|