emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* use a src block's result as input of another src block report error: the input device is not a TTY
@ 2017-12-19 12:59 numbchild
  2017-12-19 14:50 ` Neil Jerram
  0 siblings, 1 reply; 2+ messages in thread
From: numbchild @ 2017-12-19 12:59 UTC (permalink / raw)
  To: Org-mode

[-- Attachment #1: Type: text/plain, Size: 678 bytes --]

Here is my example:

#+NAME: get-container-name
#+begin_src shell :results output
echo $(docker ps --format="{{.Names}}")
#+end_src

#+RESULTS: get-container-name
: elastic_thompson

#+begin_src shell :var container_name=get-container-name :noweb yes
docker exec -it $container_name pwd
# docker exec -it <<get-container-name>> pwd
#+end_src

#+RESULTS:

But I got error:

#+begin_example
the input device is not a TTY
#+end_example


[stardiviner]           <Hack this world!>      GPG key ID: 47C32433
IRC(freeenode): stardiviner                     Twitter:  @numbchild
Key fingerprint = 9BAA 92BC CDDD B9EF 3B36  CB99 B8C4 B8E5 47C3 2433
Blog: http://stardiviner.github.io/

[-- Attachment #2: Type: text/html, Size: 1326 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: use a src block's result as input of another src block report error: the input device is not a TTY
  2017-12-19 12:59 use a src block's result as input of another src block report error: the input device is not a TTY numbchild
@ 2017-12-19 14:50 ` Neil Jerram
  0 siblings, 0 replies; 2+ messages in thread
From: Neil Jerram @ 2017-12-19 14:50 UTC (permalink / raw)
  To: emacs-orgmode, numbchild@gmail.com

[-- Attachment #1: Type: text/plain, Size: 1070 bytes --]

Remove the -it options, which I believe you don't need for executing a simple command like pwd.

(-it is what you use to execute a shell or other interactive command in a container, and requires there to be a tty.)

Best wishes - Neil


On 19 December 2017 12:59:19 GMT+00:00, "numbchild@gmail.com" <numbchild@gmail.com> wrote:
>Here is my example:
>
>#+NAME: get-container-name
>#+begin_src shell :results output
>echo $(docker ps --format="{{.Names}}")
>#+end_src
>
>#+RESULTS: get-container-name
>: elastic_thompson
>
>#+begin_src shell :var container_name=get-container-name :noweb yes
>docker exec -it $container_name pwd
># docker exec -it <<get-container-name>> pwd
>#+end_src
>
>#+RESULTS:
>
>But I got error:
>
>#+begin_example
>the input device is not a TTY
>#+end_example
>
>
>[stardiviner]           <Hack this world!>      GPG key ID: 47C32433
>IRC(freeenode): stardiviner                     Twitter:  @numbchild
>Key fingerprint = 9BAA 92BC CDDD B9EF 3B36  CB99 B8C4 B8E5 47C3 2433
>Blog: http://stardiviner.github.io/

[-- Attachment #2: Type: text/html, Size: 2116 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-12-19 14:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-19 12:59 use a src block's result as input of another src block report error: the input device is not a TTY numbchild
2017-12-19 14:50 ` Neil Jerram

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).