Skip to content

Instantly share code, notes, and snippets.

@hannestyden
Created August 8, 2014 15:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save hannestyden/4df49e92f0e9998c8a4f to your computer and use it in GitHub Desktop.
Save hannestyden/4df49e92f0e9998c8a4f to your computer and use it in GitHub Desktop.
# Emulating `sed` with inplace editing **without** backups for OS X
# Tested with zsh.
sedi () {
local ext='.sedi-bak'
sed -i $ext $@
rm "${@: -1}$ext"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment