vote up 2 vote down star
1

I have a ~23000 line sql dump containing several databases worth of data. I need to extract a certain section of this file (i.e. the data for a single database) and place it in a new file. I know both the start and end line numbers of the data that I want.

Does anyone know a unix command (or series of commands) to extract all lines from a file between say line 16224 and 16482 and then redirect them into a new file?

flag

11 Answers

vote up 15 vote down check
sed -n 16224,16482p filename > newfile
link|flag
vote up 0 vote down

You could use 'vi' and then the following command:

:16224,16482w!/tmp/some-file

Alternatively:

cat file | head -n 16482 | tail -n 258
link|flag
head -n 16482 file|tail -n 258 should work better – Torsten Marek Sep 26 '08 at 17:27
vote up 2 vote down
 # print section of file based on line numbers
 sed -n '16224 ,16482p'               # method 1
 sed '16224,16482!d'                 # method 2
link|flag
vote up 1 vote down

perl -ne 'print if 16224..16482' file.txt > new_file.txt

link|flag
vote up 0 vote down

Quick and dirty:

head -16428 < file.in | tail -259 > file.out

Probably not the best way to do it but it should work.

BTW: 259 = 16482-16224+1.

link|flag
vote up 2 vote down

sed -n '16224,16482p' < dump.sql

link|flag
vote up 0 vote down

cat file.txt | head -n 16482 | tail -n 258

Does the same but requires and extra process.

link|flag
vote up 4 vote down

Quite simple using head/tail:

head -16482 in.sql | tail -258 > out.sql

using sed:

sed -n '16482,16482p' in.sql > out.sql

using awk:

awk 'NR>=10&&NR<=20' in.sql > out.sql
link|flag
vote up 8 vote down
sed -n '16224,16482 p' orig-data-file > new-file

Where 16224,16482 are the start line number and end line number, inclusive. This is 1-indexed.

link|flag
vote up 0 vote down

cat dump.txt | head -16224 | tail -258

should do the trick. The downside of this approach is that you need to do the arithmetic to determine the argument for tail and to account for whether you want the 'between' to include the ending line or not.

link|flag
vote up 1 vote down

I was about to post the head/tail trick, but actually I'd probably just fire up emacs. ;-)

esc-x goto-line[ret] 16224

mark (ctl-space)

esc-x goto-line[ret] 16482

esc-w

open the new output file, ctl-y save

Let's me see what's happening.

link|flag

Your Answer

Get an OpenID
or

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