Skip to content

Instantly share code, notes, and snippets.

@nepsilon
Created January 24, 2017 19:43
Show Gist options
  • Save nepsilon/ebf9ecc08a7bb3772f54960ea1cec3e7 to your computer and use it in GitHub Desktop.
Save nepsilon/ebf9ecc08a7bb3772f54960ea1cec3e7 to your computer and use it in GitHub Desktop.
How to replace a string in a file? — First published in fullweb.io issue #84

How to replace a string in a file?

The simplest way to proceed is to use sed. It‘s available both on Mac and Linux. Here is the gist of it:

sed -i 's/old/new/g' file.txt

Here we’re replacing old with new. The -i option will replace the string inplace. The /g flag will replace every occurrences in the file.

@nepsilon
Copy link
Author

@josephgrossberg Good catch! My example seems to work only with GNU sed, not the BSD sed which is pre-installed on Mac.

The BSD sed needs a value to its -i option, to specify the extension of the backup file.

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