How within Apache Ant can I filter OUT only lines that don't begin with INSERT like I believe is possible (see below) with grep.
cat specialtable.inserts.sql | grep INSERT > specialtable.inserts.ONLY.sql
|
How within Apache Ant can I filter OUT only lines that don't begin with INSERT like I believe is possible (see below) with grep.
|
||||
|
|
|
You can use the linecontains or linecontainsregexp filter readers
If you wanted to filter the file to include all lines that contain INSERT, UPDATE, or DELETE then use
You could also use the |
|||||||
|