We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unlike Ubuntu, OS X requires the extension to be explicitly specified. The workaround is to set an empty string:
$ sed -i '' 's/megatron/pony/g' /path/to/file.txt
Add the -i option to sed to save the result back to input.txt.
https://myshittycode.com/2014/07/24/os-x-sed-extra-characters-at-the-end-of-l-command-error/
The text was updated successfully, but these errors were encountered:
Fix sed command in setup_dev_env.sh for macOS
d09561a
The empty arg in the sed command is required to work on macOS (compare to: lmquang/til#18)
3c69600
No branches or pull requests
Unlike Ubuntu, OS X requires the extension to be explicitly specified. The workaround is to set an empty string:
Add the -i option to sed to save the result back to input.txt.
https://myshittycode.com/2014/07/24/os-x-sed-extra-characters-at-the-end-of-l-command-error/
The text was updated successfully, but these errors were encountered: