From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ken Mankoff Subject: data tables produced by shell source block Date: Wed, 12 Mar 2014 16:08:18 -0400 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47888) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WNpRx-0007Xb-TB for emacs-orgmode@gnu.org; Wed, 12 Mar 2014 16:08:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WNpRs-0005AL-3G for emacs-orgmode@gnu.org; Wed, 12 Mar 2014 16:08:25 -0400 Received: from mail-ie0-x236.google.com ([2607:f8b0:4001:c03::236]:62202) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WNpRr-000588-UT for emacs-orgmode@gnu.org; Wed, 12 Mar 2014 16:08:20 -0400 Received: by mail-ie0-f182.google.com with SMTP id y20so15294ier.13 for ; Wed, 12 Mar 2014 13:08:19 -0700 (PDT) Received: from gorgonzola.whoi.edu (gorgonzola.whoi.edu. [128.128.28.197]) by mx.google.com with ESMTPSA id y9sm60917083igl.7.2014.03.12.13.08.17 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 12 Mar 2014 13:08:18 -0700 (PDT) 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: org mode The babel sh example here: http://orgmode.org/worg/org-contrib/babel/intro.html#source-code-execution says (and shows), "Babel automatically converts the output into an Org-mode table.". When I run that same code #+name: directories #+begin_src sh :results replace cd ~ && du -sc * |grep -v total #+end_src I do not get a table. Rather, I get the results in two columns and a "#+begin_example" #+RESULTS: directories #+begin_example Can anyone provide a working example for generating a table in shell mode that can then be used with Python code? Thanks, -k.