#!/bin/sh # Export files with Org mode # emacs -q --batch --eval " (progn (require 'ox-html) (setq org-html-htmlize-output-type 'css) (dolist (file command-line-args-left) (with-current-buffer (find-file-noselect file) (org-html-export-to-html)))) " "$@"