Thomas S. Dye <t...@tsdye.com> wrote:

> > Can you do
> >
> >  find -type f | xargs grep subst-ksc
> >
> > in the org-mode directory? I find no trace of such a beast in my tree
> > (or indeed in emacs).
> >
> > Nick
> 
> Apparently not on my Mac:
> 
> bash-3.2$ find -type f | xargs grep subst-ksc
> find: illegal option -- t
> find: illegal option -- y
> find: illegal option -- p
> find: illegal option -- e
> find: f: No such file or directory
> 
> However,
> bash-3.2$ find ./ -name subst-ksc
> doesn't find anything,
> 

Bah, humbug - sorry: I meant

 find . -type f | xargs grep subst-ksc

This should find all "normal" files and grep through them looking for
the string subst-ksc.

 find . -name subst-ksc

by contrast, finds all files named subst-ksc: it's not surprising that
you didn't find anything with the latter.

Nick


Reply via email to