Posts Tagged With: regular

Sed Regular Expression Range

Tagged with: , , , , , ,

Print the contents of a file from a given regular expression to another


sed -n '/start/,/end/ p' file

This will print the contents of the ‘file’ from the line that matches /start/ until the line that matches /end/

No Comments »

Command to Print Until Regular Expression

Tagged with: , , , , ,

Print a file until a regular expression is matched.


cat file.txt | perl -pe "exit if(/Thats all/)"
No Comments »