Henri-Paul Indiogine <hindiog...@gmail.com> writes:

> Greetings!
>
> I have another question regarding the output of the bash script.   I
> have a bunch of echo statements.  org-mode outputs now everything in a
> table.  Is it possible to suppress this and have just plain lines?
> That was the behavior with a simple script.
>

Yes, the ":results scalar" header argument is what you want.

#+begin_src sh :results scalar
  echo 1
  echo 2
  echo 3
#+end_src

#+results:
: 1
: 2
: 3

Best -- Eric

-- 
Eric Schulte
http://cs.unm.edu/~eschulte/

Reply via email to