gpt4 book ai didi

emacs - 在组织模式导出上重新应用表公式

转载 作者:行者123 更新时间:2023-12-02 01:02:15 24 4
gpt4 key购买 nike

我正在使用 org-mode 文件进行一些文件系统监控。为此,我有一个表格,我在其中通过公式中的 org-sbe 调用代码块。它看起来像这样:

#+NAME: part-size
#+BEGIN_SRC bash :var mach="" :var part="" :var bs="TB" :exports none :results silent
tmp=($(df -B ${bs} /net/${mach}/${part} | tail -1 ))
bc -l <<< "scale=2; ${tmp[1]}/1024/1024"
#+END_SRC

#+NAME: part-used
#+BEGIN_SRC bash :var mach="" :var part="" :var bs="TB" :exports none :results silent
tmp=($(df -B${bs} /net/${mach}/${part} | tail -1))
bc -l <<< "scale=2; ${tmp[2]}/1024/1024"
#+END_SRC

| machine | partition | size[TB] | used[TB] | available[TB] |
|---------+-----------+----------+----------+---------------|
| mach1 | part1 | 60.0 | 56.0 | 4.0 |
| mach1 | part2 | 15.0 | 12.5 | 2.5 |
| mach2 | part1 | 40.5 | 10.5 | 30.0 |
|---------+-----------+----------+----------+---------------|
| total | | 115.5 | 79.0 | 36.5 |
#+TBLFM: @>$3..@>$5=vsum(@I..II)::@2$3..@9$3='(org-sbe part-size (mach $$1) (part $$2) (bs \"1MB\"))::@2$4..@9$4='(org-sbe part-used (mach $$1) (part $$2) (bs \"1MB\"))::@2$5..@9$5=$-2 - $-1

我的问题是我定期自动将该文件导出到网页,但表格的内容没有得到更新。所以我想知道是否有一种方法可以在导出时自动重新应用表格公式,就像在导出时运行代码块一样。

最佳答案

这是一个简化的示例,使用 Seth Rothschild 在评论中建议的机制,每次导出时都会在表中更新时间:

* code                                                     :noexport:                                                                                           

#+begin_src emacs-lisp
(defun tables-recalc (backend)
(org-table-recalculate-buffer-tables))

(add-hook 'org-export-before-processing-hook #'tables-recalc)
#+end_src

#+RESULTS:
| tables-recalc |

* table
#+NAME: gettime
#+begin_src shell
date
#+end_src
| time |
|------------------------------|
| Wed Apr 11 16:27:09 EDT 2018 |
#+TBLFM: $> = '(org-sbe gettime)

关于emacs - 在组织模式导出上重新应用表公式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49756167/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com