From mboxrd@z Thu Jan 1 00:00:00 1970 From: Samuel Wales Subject: Re: [babel] shell does not unquote Date: Thu, 6 Feb 2014 14:55:13 -0700 Message-ID: References: <87bnylcaje.fsf@gmail.com> <87ob2kc4fa.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43720) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WBWum-0006mH-AR for emacs-orgmode@gnu.org; Thu, 06 Feb 2014 16:55:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WBWuh-0002px-0i for emacs-orgmode@gnu.org; Thu, 06 Feb 2014 16:55:20 -0500 Received: from mail-wi0-x230.google.com ([2a00:1450:400c:c05::230]:38300) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WBWug-0002pf-Qc for emacs-orgmode@gnu.org; Thu, 06 Feb 2014 16:55:14 -0500 Received: by mail-wi0-f176.google.com with SMTP id hi5so269611wib.15 for ; Thu, 06 Feb 2014 13:55:13 -0800 (PST) In-Reply-To: <87ob2kc4fa.fsf@gmail.com> 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: Eric Schulte Cc: emacs-orgmode@gnu.org thanks for the examples, but they don't meet my needs as tables for each set of arguments would be too unwieldy. what would be ideal is to allow setting noweb expansions in the call line (instead of requiring named blocks to provide the expansion). i.e. it is similar to setting a var, but is a noweb setting instead. then i would just do the call with the files i want, quoted the way i want. may i make this a feature request? On 2/6/14, Eric Schulte wrote: > #+name: files-tab > | with space | > | nospace | > > #+name: files-ex > : with space > : nospace > > #+name: list > #+begin_src sh :var files="" :results verbatim > IFS=" > " > for file in $files;do > echo "-|$file|-" > done > #+end_src > > #+call: list(files-tab) > > #+RESULTS: > : -|with space|- > : -|nospace|- > > #+call: list(files-ex) > > #+RESULTS: > : -|with space|- > : -|nospace|-