From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Cannot open load file: subst-ksc Date: Fri, 31 Aug 2012 23:58:16 -0400 Message-ID: <5503.1346471896@alphaville> References: <3934.1346469713@alphaville> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([208.118.235.92]:56980) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T7fDA-0004kS-8b for emacs-orgmode@gnu.org; Sat, 01 Sep 2012 00:21:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T7fD9-0000Ac-Cx for emacs-orgmode@gnu.org; Sat, 01 Sep 2012 00:21:32 -0400 Received: from g5t0006.atlanta.hp.com ([15.192.0.43]:25734) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T7fD9-0000AW-8n for emacs-orgmode@gnu.org; Sat, 01 Sep 2012 00:21:31 -0400 In-Reply-To: Message from tsd@tsdye.com (Thomas S. Dye) of "Fri, 31 Aug 2012 17:48:50 -1000." List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: "Thomas S. Dye" Cc: Org-mode Thomas S. Dye 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