考虑 org-babel 中的以下 perl 片段,它使用<STDIN>
.
** Ans 2
#+begin_src perl :results output
use Math::Trig;
$rad = <STDIN>;
$circumference = 2*pi*$rad;
print "Circumference of circle is $circumference";
#+end_src
是否可以将输入从另一个块通过管道传输到该块?
说 :
#+begin_src text :name test-input
12.5
#+end_src