This command will replace the line that contains “This is a test” with “Is it Friday yet?” in the test.txt document.




sed -i "" '/This is a test/ c\

Is it Friday yet?\

' test.txt


Here is a breakdown of the above command.

The -i will edit the file in place.

The "" will get around not having an extension after the -i as required by os x.  

c\  is the change flag.  The above command is separated on multiple lines to make the c\ flag work properly.  If you try to enter the command on one line, it will fail because the c\ has issues with escaping the backslash.

You could also use sed -i.bak which would create a backup of the file before it’s edited instead of the "".

The remainder of the command:  replace the line that contains “This is a test” with “Is it Friday yet?” in the test.txt document.


Marianne Carroll

Marianne began her professional career as a musician, recording and touring as a violinist with the 70’s disco sensation CHIC. She then moved into music management as the Executive Director of the Aston Magna Foundation for Music, which sponsored a Summer classical music festival and NEA-funded cross-cultural educational Academy in the Berkshires as well as a concert series at the Metropolitan Museum.

Speak with an Apple Certified expert today

We’d love to discuss your business challenges, even if you’re not sure what your next step is. No pitch, no strings attached.

Let's Talk