Andreas Leha wrote:
> how do I reference the results of a #+call line?
>
> Here are my unsuccessful attempts:
>
> * Test call results
>
> #+name: curdir
> #+begin_src sh
>   echo "$PWD"
> #+end_src
>
> #+results: curdir
> : /home/andreas/tmp/junk/2013/11
>
> [...]
>
> #+begin_src sh :var test=curdircall()
>   echo "$test"
> #+end_src
>
> #+results:
> : nil

Use the following:

#+begin_src sh :var test=curdir()
  echo "$test"
#+end_src

Best regards,
  Seb

-- 
Sebastien Vauban


Reply via email to