Skip to content

Instantly share code, notes, and snippets.

@sinewalker
Last active July 16, 2018 23:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sinewalker/87f03f6ad25cad0bedbbd5895f0a9f0a to your computer and use it in GitHub Desktop.
Save sinewalker/87f03f6ad25cad0bedbbd5895f0a9f0a to your computer and use it in GitHub Desktop.
Comment / un-comment a line in a config file, matching a pattern, using sed
sed -i '/pattern/s/^/#/g' file #to comment out
sed -i '/pattern/s/^#//g' file #to uncomment
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment