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
grep: invalid option -- P usage: grep [-abcdDEFGHhIiJLlMmnOopqRSsUVvwXxZz] [-A num] [-B num] [-C[num]] [-e pattern] [-f file] [--binary-files=value] [--color=when] [--context[=num]] [--directories=action] [--label] [--line-buffered] [--null] [pattern] [file ...]
everytime its printing like this
The text was updated successfully, but these errors were encountered:
I hade the same problem, but solved it by following this thread:
Bash-it/bash-it#1210
In the .fancy-git/modules/settings-manager.sh file change line 41. From:
current_setting_value=$(grep -oP "(?<=$param_setting_name:).*" < "$FANCYGIT_CONFIG_FILE")
To
current_setting_value=$(grep -o "(?<=$param_setting_name:).*" < "$FANCYGIT_CONFIG_FILE")
It seams that grep -P creates a problem for Mac, so just remove the "P" in the line works for me. Hope this helps.
Sorry, something went wrong.
Thanks @bardpedersen
No branches or pull requests
everytime its printing like this
The text was updated successfully, but these errors were encountered: