Mercurial > org-tools
view tangle.sh @ 4:de36470a2f70
simplified tangle
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sun, 16 Oct 2011 08:23:26 -0700 |
parents | a838c4a7fb70 |
children | 73beed20f7de |
line wrap: on
line source
1 #!/bin/sh2 # assumes that there is a ./org directory, and tangles3 # each org file in it.5 DIR=`pwd`6 FILES=""8 for i in $(find $DIR/org -name "*.org"); do9 FILES="$FILES \"$i\""10 done13 emacs --batch \14 -l /home/r/config/emacs/clojure-init.el \15 -l /home/r/config/emacs/org-init.el \16 --eval "(progn17 (mapc (lambda (file)18 (find-file (expand-file-name file \"$DIR\"))19 (org-babel-tangle)20 (kill-buffer)) '($FILES)))" 2>&1 | pcregrep '(Wrote)|(tangled)'