From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eric Schulte" Subject: Re: exporting all org files to txt periodically Date: Thu, 13 Jan 2011 11:31:54 -0700 Message-ID: <87sjwwbqp1.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=54078 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PdRxr-0006Kj-RR for emacs-orgmode@gnu.org; Thu, 13 Jan 2011 13:32:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PdRxq-0003gP-Ds for emacs-orgmode@gnu.org; Thu, 13 Jan 2011 13:32:03 -0500 Received: from mail-gx0-f169.google.com ([209.85.161.169]:61127) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PdRxq-0003gI-94 for emacs-orgmode@gnu.org; Thu, 13 Jan 2011 13:32:02 -0500 Received: by gxk5 with SMTP id 5so922425gxk.0 for ; Thu, 13 Jan 2011 10:32:01 -0800 (PST) In-Reply-To: (Carl Bolduc's message of "Thu, 13 Jan 2011 13:14:13 -0500") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Carl Bolduc Cc: emacs-orgmode@gnu.org Since Org-mode files are plain text, I don't think you would need to export them at all, rather I would imagine an easier solution would be to either 1. teach the search engine that .org means .txt 2. symlink all of your .org files to .txt file, e.g. on a linux, unix, OSX system the following shell script will create a .txt symlink for each .org file in the current directory #+begin_src sh for i in `ls --color=never *.org`;do ln -s $i `basename $i .org`.txt done #+end_src Cheers -- Eric Carl Bolduc writes: > Where I work, we have a powerful search engine that indexes all kinds of > files. It detects the converter to use based on the file extension. It does > not understand the .org extension. > > I would like to know how I could periodically export my org files to txt, > maybe through a command, to a specific location on my network. This way, the > search engine could index all my notes... > > Thanks, > Carl > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode