* how i pass output of one codeblock as iinput of another codeblock without manual copy paste
@ 2012-07-02 21:45 James Kang
2012-07-02 23:25 ` Thomas S. Dye
0 siblings, 1 reply; 3+ messages in thread
From: James Kang @ 2012-07-02 21:45 UTC (permalink / raw)
To: emacs-orgmode@gnu.org
Hi,
I have been using code blocks with the following way to pass one's
output to the other's input(or input variable).
You can notice that I am manually copying/pasting the contents of
"RESULTS" and create a table with a name "my_table".
Now, is there anyway I can do this passing the output automatically
without manual copy/paste?
Thanks
(using orgmode 7.8)
#+srcname: code1
#+begin_src sh :exports code :results value table
Some codes here
#+end_src
#+RESULTS:
|Good results|
#+tblname: my_table ### this is copied from the previous results manually
|Good results|
#+call: transpose(table=my_table)
#+results: transpose(table=my_table)
|Good results Processed by transpose|
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: how i pass output of one codeblock as iinput of another codeblock without manual copy paste
2012-07-02 21:45 how i pass output of one codeblock as iinput of another codeblock without manual copy paste James Kang
@ 2012-07-02 23:25 ` Thomas S. Dye
2012-07-03 15:10 ` James Kang
0 siblings, 1 reply; 3+ messages in thread
From: Thomas S. Dye @ 2012-07-02 23:25 UTC (permalink / raw)
To: James Kang; +Cc: emacs-orgmode@gnu.org
James Kang <marchkang@gmail.com> writes:
> Hi,
>
> I have been using code blocks with the following way to pass one's
> output to the other's input(or input variable).
> You can notice that I am manually copying/pasting the contents of
> "RESULTS" and create a table with a name "my_table".
> Now, is there anyway I can do this passing the output automatically
> without manual copy/paste?
>
> Thanks
> (using orgmode 7.8)
>
> #+srcname: code1
> #+begin_src sh :exports code :results value table
> Some codes here
> #+end_src
>
> #+RESULTS:
> |Good results|
> #+tblname: my_table ### this is copied from the previous results manually
> |Good results|
> #+call: transpose(table=my_table)
>
> #+results: transpose(table=my_table)
> |Good results Processed by transpose|
Aloha James,
The Org mode manual should answer your question:
http://orgmode.org/manual/var.html#var
You'll probably want to use #+name: code1 rather than #+srcname: code1
Once you've done that, then #+call: transpose(table=code1) ought to
work, if the Library of Babel is loaded or you have otherwise defined
transpose.
All the best,
Tom
--
Thomas S. Dye
http://www.tsdye.com
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: how i pass output of one codeblock as iinput of another codeblock without manual copy paste
2012-07-02 23:25 ` Thomas S. Dye
@ 2012-07-03 15:10 ` James Kang
0 siblings, 0 replies; 3+ messages in thread
From: James Kang @ 2012-07-03 15:10 UTC (permalink / raw)
To: Thomas S. Dye; +Cc: emacs-orgmode@gnu.org
[-- Attachment #1: Type: text/plain, Size: 1435 bytes --]
Thank you, Tom.
It works like a charm!
Now, I will read the document one more time very carefully and throughly.
James
On Mon, Jul 2, 2012 at 7:25 PM, Thomas S. Dye <tsd@tsdye.com> wrote:
> James Kang <marchkang@gmail.com> writes:
>
> > Hi,
> >
> > I have been using code blocks with the following way to pass one's
> > output to the other's input(or input variable).
> > You can notice that I am manually copying/pasting the contents of
> > "RESULTS" and create a table with a name "my_table".
> > Now, is there anyway I can do this passing the output automatically
> > without manual copy/paste?
> >
> > Thanks
> > (using orgmode 7.8)
> >
> > #+srcname: code1
> > #+begin_src sh :exports code :results value table
> > Some codes here
> > #+end_src
> >
> > #+RESULTS:
> > |Good results|
> > #+tblname: my_table ### this is copied from the previous results
> manually
> > |Good results|
> > #+call: transpose(table=my_table)
> >
> > #+results: transpose(table=my_table)
> > |Good results Processed by transpose|
> Aloha James,
>
> The Org mode manual should answer your question:
>
> http://orgmode.org/manual/var.html#var
>
> You'll probably want to use #+name: code1 rather than #+srcname: code1
>
> Once you've done that, then #+call: transpose(table=code1) ought to
> work, if the Library of Babel is loaded or you have otherwise defined
> transpose.
>
> All the best,
> Tom
>
> --
> Thomas S. Dye
> http://www.tsdye.com
>
[-- Attachment #2: Type: text/html, Size: 2218 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-07-03 15:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-02 21:45 how i pass output of one codeblock as iinput of another codeblock without manual copy paste James Kang
2012-07-02 23:25 ` Thomas S. Dye
2012-07-03 15:10 ` James Kang
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).