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/
Byte sized tech know-how.
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/
Copyright © 2024 Txt