Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dixonge/18da7ba740c360376f798ed3ac4c9323 to your computer and use it in GitHub Desktop.
Save dixonge/18da7ba740c360376f798ed3ac4c9323 to your computer and use it in GitHub Desktop.
Delete lines *after* a pattern match in all files in a folder
find ./ -type f -exec sed -e '/pattern/{n;N;N;N;N;d}' {} \; 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment