From mboxrd@z Thu Jan 1 00:00:00 1970 From: "George Kettleborough (EI)" Subject: ob-shell: using a table variable with bash Date: Fri, 3 Mar 2017 12:40:54 +0000 Message-ID: <1811afdb-ffe4-37e7-9858-19b22d7ff2ed@earlham.ac.uk> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------A43AA0E6EF2FB462E0963951" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46676) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cjwQi-00080n-9p for emacs-orgmode@gnu.org; Fri, 03 Mar 2017 18:16:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cjwQe-00055o-6S for emacs-orgmode@gnu.org; Fri, 03 Mar 2017 18:16:08 -0500 Received: from mail-db5eur01on0133.outbound.protection.outlook.com ([104.47.2.133]:28770 helo=EUR01-DB5-obe.outbound.protection.outlook.com) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cjwQd-00054o-KY for emacs-orgmode@gnu.org; Fri, 03 Mar 2017 18:16:04 -0500 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" To: emacs-orgmode@gnu.org --------------A43AA0E6EF2FB462E0963951 Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Hello, I recently updated my org-mode from version 7 (I think) to the latest. The behaviour of using a table as a variable in a shell code source block has changed. I use to use it like this: #+BEGIN_SRC sh :results output :var table=synteny-names :separator , IFS=',' while read col1 col2; do # do stuff done <