2009/6/26 kcrisman <kcris...@gmail.com>: > > On Jun 26, 2:24 pm, John H Palmieri <jhpalmier...@gmail.com> wrote: >> On Jun 26, 10:33 am, kcrisman <kcris...@gmail.com> wrote: >> >> > > > I'm really sorry this is so weird. This is OSX.4 on a PPC, so perhaps >> > > > something got changed in those scripts recently? >> >> > > Yes, it got changed in #5806. Can you try >> >> > > find SAGE_ROOT/devel/sage/sage// \( -name *.py \) -exec grep -i -H >> > > cannot {} + >> >> > Same error. I tried putting a ; in various places, but to no avail. >> >> How about if you replace the "+" at the end with "\;"?
The '+' thing is a GNUism. That's why it doesn't work on 10.4. You should use find $SAGE_ROOT/devel/sage/sage/ \( -name '*.py' \) -print0 | xargs -0 grep -i -H 'cannot' So that you get the behavior that '+' gives (limit the number of invocations of grep) and stay portable. > Bingo! > > find Desktop/sage-4.1.alpha1/devel/sage/sage// \( -name *.py \) -exec > grep -i -H Palmieri {} \; > > Desktop/sage-4.1.alpha1/devel/sage/sage///algebras/ > steenrod_algebra.py:- John H. Palmieri (2008-07-30): version 0.9 > Desktop/sage-4.1.alpha1/devel/sage/sage///algebras/ > steenrod_algebra.py:# Copyright (C) 2008 John H. Palmieri > <palmi...@math.washington.edu> > ... > Desktop/sage-4.1.alpha1/devel/sage/sage///misc/latex_macros.py:- John > H. Palmieri (2009-03) > Desktop/sage-4.1.alpha1/devel/sage/sage///misc/sagedoc.py:- J. H. > Palmieri (2009-04-11): fix for #5754 plus doctests > > > > -- La brigade SnW veut vous recruter - http://brigade.snw.googlepages.com --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe from this group, send email to sage-devel-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---