It looks like the new version of OSX no longer supports grep -P
and as such has made some of my scripts stop working.
var1=`grep -o -P '(?<=<st:italic>).*(?=</italic>)' file.txt`
I need to capture the grep to a variable and I need to use the zero width assertions, as well as \K
var2=`grep -P -o '(property:)\K.*\d+(?=end)' file.txt`
Any alternatives would be greatly appreciated.
To force GNU grep to output lines even from files that appear to be binary, use the -a or ' --binary-files=text ' option. To eliminate the “Binary file matches” messages, use the -I or ' --binary-files=without-match ' option, or the -s or --no-messages option. Why doesn't ' grep -lv ' print non-matching file names?
While executing a bash script it stalls on a grep command. The Terminal just stops doing anything and you have press CTRL+Z to stop the script.
The grep manual at the exit status section report: EXIT STATUS The exit status is 0 if selected lines are found, and 1 if not found. If an error occurred the exit status is 2.
The grep command has an -m or --max-count parameter, which can solve this problem, but it might not work like you'd expect. This parameter will make grep stop matching after finding N matching lines, which works great as it will limit the output to one line, always containing the first match.
If your scripts are for your use only, you can install grep
from homebrew-core
using brew
:
brew install grep
Then it's available as ggrep
(GNU grep
). it doesn't replaces the system grep
(you need to put the installed grep before the system one on the PATH
).
The version installed by brew
includes the -P
option, so you don't need to change your scripts.
If you need to use these commands with their normal names, you can add a "gnubin" directory to your PATH from your bashrc like:
PATH="/usr/local/opt/grep/libexec/gnubin:$PATH"
You can export this line on your ~/.bashrc or ~/.zshrc to keep it for new sessions.
Please see here for a discussion of the pro-s and cons of the old --with-default-names
option and it's (recent) removal.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With