org.texi: Replace broken example script for batch execution

* doc/org.texi: Example bash script to tangle from *.org file was broken
and obsolete; fixed to now work with recent versions of Org.

There is an example bash script in section  14.12 of the Org manual which
is meant to tangle source blocks from a supplied list of Org files.

The present version is broken in several small ways (it appears to date
from a period when babel was still part of contrib), and requires a
hard-coded specification of the path ORG_HOME.

I've fixed the issue with ORG_HOME, another issue with grepping for strings
that no longer are emitted by ob-tangle, and removed some obsolete
dependencies.

I'm finding the corrected script a useful thing to call from makefiles.
This commit is contained in:
Ethan Ligon 2016-04-07 21:05:27 +00:00 committed by Nicolas Goaziou
parent 0fac70ea89
commit a6ccd4ad95
1 changed files with 6 additions and 8 deletions

View File

@ -16839,13 +16839,11 @@ done
emacs -Q --batch \ emacs -Q --batch \
--eval "(progn --eval "(progn
(add-to-list 'load-path (expand-file-name \"~/src/org/lisp/\")) (require 'org)(require 'ob)(require 'ob-tangle)
(add-to-list 'load-path (expand-file-name \"~/src/org/contrib/lisp/\" t))
(require 'org)(require 'org-exp)(require 'ob)(require 'ob-tangle)
(mapc (lambda (file) (mapc (lambda (file)
(find-file (expand-file-name file \"$DIR\")) (find-file (expand-file-name file \"$DIR\"))
(org-babel-tangle) (org-babel-tangle)
(kill-buffer)) '($FILES)))" 2>&1 |grep tangled (kill-buffer)) '($FILES)))" 2>&1 |grep -i tangled
@end example @end example
@node Miscellaneous @node Miscellaneous