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
dotfiles/.bash_profile
Line 75 in 93a2e91
If you have a bash script (like CircleCI's CLI: https://circle-downloads.s3.amazonaws.com/releases/build_agent_wrapper/circleci) that redirects the grep output into a file, you get escape characters for the coloring in the file, which in this case, broke the script in a very non-obvious way.
The text was updated successfully, but these errors were encountered:
I ran into this today. Here's a fix that lets you still have colors:
export GREP_OPTIONS='--color=auto'
This won't output the color character if in a non-interactive environment.
Sorry, something went wrong.
No branches or pull requests
dotfiles/.bash_profile
Line 75 in 93a2e91
If you have a bash script (like CircleCI's CLI: https://circle-downloads.s3.amazonaws.com/releases/build_agent_wrapper/circleci) that redirects the grep output into a file, you get escape characters for the coloring in the file, which in this case, broke the script in a very non-obvious way.
The text was updated successfully, but these errors were encountered: