I want to remove all create table statements from a mysql script, but the statement runs over multiple lines.

Like this: Create table ......NEWLINE... NEWLINE... NEWLINE....;

So I tried this statement, but nothing happens:

sed -i 's/CREATE TABLE(.*\n)*.*;`//' *.sql

Seq only reads one line at a time? How can I fix this?

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

Will delete all lines between the lines containing CREATE TABLE and ;

sed -i '/CREATE TABLE/,/;/d' copy/dump.sql
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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