Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save izimbra/7168469 to your computer and use it in GitHub Desktop.
Save izimbra/7168469 to your computer and use it in GitHub Desktop.
Replaces first occurrence of a string in a file using sed. This was tried and worked in OS X 10.9. #osx #shell #sed
sed '1,/string/ s/string/replacement/' file
@Ojasv-Singh-Zeotap
Copy link

to change in a text file (inplace), sed -i '.txt' '1,/string/ s/string/replacement/g' ~/.zshrc works fine for me

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