We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3acd42 commit 1e291b1Copy full SHA for 1e291b1
src/bin/sage-grep
@@ -2,4 +2,4 @@
2
3
cd "$SAGE_SRC"
4
5
-find sage -print | GREP_OPTIONS= egrep '.py([xdi])?$' | xargs grep "$@"
+find sage -print | GREP_OPTIONS= grep -E '.py([xdi])?$' | xargs grep "$@"
src/bin/sage-grepdoc
cd "$SAGE_DOC"
-find html -print | GREP_OPTIONS= egrep '.html$' | xargs grep "$@"
+find html -print | GREP_OPTIONS= grep -E '.html$' | xargs grep "$@"
0 commit comments