Exemplos de Uso
$
grep -n "Table structure for table .minhatab." backup.sql
grep -n "Dumping data for table .minhatab." backup.sql
$
awk "/Table structure for table .minhatab./,/Table structure for table /" backup.sql > minhatab.sql
$
mysqlpump -u root -p banco minhatab > minhatab.sql
$
mysql -u root -p banco < minhatab.sql