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 1e291b1 commit 5ced222Copy full SHA for 5ced222
src/bin/sage-grep
@@ -2,4 +2,4 @@
2
3
cd "$SAGE_SRC"
4
5
-find sage -print | GREP_OPTIONS= grep -E '.py([xdi])?$' | xargs grep "$@"
+find sage -name "*.py" -o -name "*.pyx" -o -name "*.pxi" -o -name "*.pxd" | xargs grep "$@"
src/bin/sage-grepdoc
cd "$SAGE_DOC"
-find html -print | GREP_OPTIONS= grep -E '.html$' | xargs grep "$@"
+find html -name '*.html' | xargs grep "$@"
0 commit comments