Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dixonge/54c655515650d3ad4607102ed15d5e88 to your computer and use it in GitHub Desktop.
Save dixonge/54c655515650d3ad4607102ed15d5e88 to your computer and use it in GitHub Desktop.
Delete a line if it matches a pattern in all files in a folder
sudo find ./ -type f -exec sed -i '/pattern-to-match/d' {} \; 

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