आप कुछ पंक्तियों को हटाने के लिए 'n, n d' का उपयोग कर सकते हैं। मुझे लगता है कि आपके मामले में आप तालिका को प्रश्न में रखना चाहते हैं, लेकिन डेटा नहीं चाहते हैं?
"टेबल के लिए डेटा डंपिंग" शामिल करने के लिए grep कमांड बदलें:
grep -n 'Table structure\|Dumping data for table' dump.sql 19:-- Table structure for table `t1` 37:-- Dumping data for table `t1` 47:-- Table structure for table `t2` 66:-- Dumping data for table `t2` 76:-- Table structure for table `t3` 96:-- Dumping data for table `t3`के लिए डेटा डंपिंग
अब, यदि आप t2 के लिए डेटा नहीं चाहते हैं, तो आप इसका उपयोग कर सकते हैं:
sed '66,75 d' dump.sql > cleandump.sql