The output of the shell commands is displayed as table. How can I have it displayed as "simple" lines of text ?
1 Answer
I usually use #+begin_shell :results drawer which wraps the results in a drawer. You can also use :results raw but that has some disadvantages: Org mode does not know where the results end, so you cannot delete them with org-babel-remove-result.
You can also use a different wrapper, e.g. #+begin_shell :results drawer :wrap example will wrap the results in a
#+begin_example ... #_end_example block.
- Thks. Good for to know.user1683620– user16836202021-01-20 14:16:04 +00:00Commented Jan 20, 2021 at 14:16
- Great, but can I have this redirect as part of the header, cause I never want any output in a popup buffer;)Jason Hunter– Jason Hunter2023-02-08 11:11:29 +00:00Commented Feb 8, 2023 at 11:11
- I don't understand your question, but in any case, you should ask it (with all the approriate details) as a new question, not as a comment to an answer for a different question.NickD– NickD2023-02-08 12:51:40 +00:00Commented Feb 8, 2023 at 12:51
-

:results verbatim