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.

@josephgrossberg
Copy link

@nepsilon Doesn't work for me on macOS:

[02:01:12] /tmp
 » which sed
/usr/bin/sed
[02:01:15] /tmp
 » echo "old" > file.txt
[02:01:18] /tmp
 » sed -i 's/old/new/g' file.txt
sed: 1: "file.txt": invalid command code f

This does, but creates that backup file (which I think -i may expect as an argument):

[02:01:12] /tmp
 » which sed
/usr/bin/sed
[02:01:15] /tmp
 » echo "old" > file.txt
[02:02:15] /tmp
 » sed -i .bak 's/old/new/g' file.txt
[02:02:22] /tmp
 » cat file.txt
new
[02:02:30] /tmp
 » cat file.txt.bak
old

@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