emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Ihor Radchenko <yantar92@gmail.com>
To: numbchild@gmail.com, Org Mode <emacs-orgmode@gnu.org>
Subject: Re: How to pass shell command result to :post source-block?
Date: Sat, 19 Jan 2019 16:49:04 +0800	[thread overview]
Message-ID: <87a7jx3udb.fsf@yantar92-laptop.i-did-not-set--mail-host-address--so-tickle-me> (raw)
In-Reply-To: <87y37hcpq9.fsf@gmail.com>

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

See the code below:

#+NAME: ansi-escape-filter
#+begin_src emacs-lisp :var data=""
(with-temp-buffer
  (insert data)
  (ansi-color-apply-on-region (point-min) (point-max))
  (buffer-string))
#+end_src

#+RESULTS: ansi-escape-filter

#+begin_src sh :dir /sudo::  :results output :post  ansi-escape-filter(data=*this*)
tree /var/spool/postfix/
#+end_src

`:results output` is needed to avoid parsing the shell output as a
table.
`data=*this*` is needed to pass the output to `ansi-escape-filter`. You
can also check the example in the org info page for the :post header
argument.


Best,
Ihor

stardiviner <numbchild@gmail.com> writes:

> I want to processing the shell ANSI escaping characters correctly or
> just filter them out for display result correctly in Emacs.
>
> Here is my try:
>
> #+NAME: ansi-escape-filter
> #+begin_src emacs-lisp
> (ansi-color-apply-on-region (point-min) (point-max))
> #+end_src
>
> #+begin_src sh :dir /sudo:: :post ansi-escape-filter
> sudo tree /var/spool/postfix/
> #+end_src
>
> #+RESULTS[<2019-01-19 10:58:39> f6d16244322abbd4fbe01bfaa084ac6bdd66a62c]:
> : nil
>
> The second source block's result is supposed to be result of command
> =sudo tree /var/spool/postfix/= instead of =nil=.
>
> Can someone help me how to do this correctly?
>
> -- 
> [ stardiviner ]
>        I try to make every word tell the meaning what I want to express.
>
>        Blog: https://stardiviner.github.io/
>        IRC(freenode): stardiviner, Matrix: stardiviner
>        GPG: F09F650D7D674819892591401B5DF1C95AE89AC3
>       
>


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

  parent reply	other threads:[~2019-01-19  8:50 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-19  3:04 How to pass shell command result to :post source-block? stardiviner
2019-01-19  4:45 ` [SOLVED] " stardiviner
2019-01-19  8:49 ` Ihor Radchenko [this message]
2019-01-19  9:20   ` stardiviner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87a7jx3udb.fsf@yantar92-laptop.i-did-not-set--mail-host-address--so-tickle-me \
    --to=yantar92@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=numbchild@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).