Hacker News new | ask | show | jobs
by pwdisswordfish2 2167 days ago
sed -n '/^###/p' is cross-platform friendly.
1 comments

This will also work:

  sed '/^###/!d'
This will also work:

   sed '/^#\{3\}/!d'