-
-
Save icasimpan/b93297c17c3e81e33021e8f188b079df to your computer and use it in GitHub Desktop.
How to install gnu sed on Mac OS X and set it as the default
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Check which version of sed is used when you run the `sed` command | |
# The version that ships with Mac OS X is | |
# /usr/bin/sed | |
which sed | |
# Install gnu-sed using Homebrew | |
# The `--with-default-names` option configures `sed` to use gnu-sed | |
# Without that option, you'll need to type `gsed` to use gnu-sed | |
brew install --default-names gnu-sed | |
# Verify which version of sed is used when you run the `sed` command | |
# OK: /usr/local/bin/sed | |
# BAD: /usr/local/bin/gsed | |
# If BAD, run `brew uninstall gnu-sed`, then reinstall with `--with-default-names` | |
which sed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you want to just use
sed
and not use '--with-default-names', you can add something like "alias sed=gsed" to your .bash_profile or .bashrc or whatever shell you are using.