On Mon, 16 Jan 2017 14:35:30 -0800
Joe Riel wrote:
> Can one use process substitution in babel?
>
> #+BEGIN_SRC bash
> comm <(ls) <(ls)
> #+END_SRC
>
> I get an error
>
> Syntax error: "(" unexpected
>
The solution was to pull and install the latest version of org from git-hub.
Now it works
Can one use process substitution in babel?
#+BEGIN_SRC bash
comm <(ls) <(ls)
#+END_SRC
I get an error
Syntax error: "(" unexpected
--
Joe Riel
Joe Riel writes:
> Can one use process substitution in babel?
>
> #+BEGIN_SRC bash
> comm <(ls) <(ls)
> #+END_SRC
>
> I get an error
>
> Syntax error: "(" unexpected
FWIW, works for me:
#+BEGIN_SRC bash
comm <(ls) <(ls)
#+END_SRC
#+RESULTS:
| | | 0001-ob-core-remove-cruft.patch
Can one use process substitution in babel?
#+BEGIN_SRC bash
comm <(ls) <(ls)
#+END_SRC
I get an error
Syntax error: "(" unexpected
--
Joe Riel