I'm trying to remove the content from the beginning of the text to the first blank line.
--($:~)-- cat example.txt pedro pablo juan francisco emiliano martin So, I would delete:
pedro pablo juan I tried with:
sed -n '/^/,/^$/ d' example.txt but it doesn't work.