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 01:28:45 -0700 Message-ID: References: <87bnylcaje.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]:48683) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WBKKF-0008Pt-Lh for emacs-orgmode@gnu.org; Thu, 06 Feb 2014 03:28:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WBKKF-0001uA-2A for emacs-orgmode@gnu.org; Thu, 06 Feb 2014 03:28:47 -0500 Received: from mail-wi0-x22e.google.com ([2a00:1450:400c:c05::22e]:42024) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WBKKE-0001u2-Rh for emacs-orgmode@gnu.org; Thu, 06 Feb 2014 03:28:46 -0500 Received: by mail-wi0-f174.google.com with SMTP id f8so1347326wiw.7 for ; Thu, 06 Feb 2014 00:28:45 -0800 (PST) In-Reply-To: <87bnylcaje.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 hi eric, say you want to list 2 files: "1 space" and "nospace". #+call: list(how="\"1 space\" nospace") #+name: list #+BEGIN_SRC sh :noweb yes :results verbatim output { # this fails # ls $how # this would work, if there were a call option to support it # ls <> } 2>&1 : #+END_SRC is there?