32 lines
1.1 KiB
Bash
Executable File
32 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
file_path="${DIR}/test_document.org"
|
|
|
|
for TARGET_VARIABLE in RESULTS CAPTION HEADER DATA NAME PLOT; do
|
|
INIT_SCRIPT=$(cat <<EOF
|
|
(progn
|
|
(erase-buffer)
|
|
(require 'org)
|
|
(defun org-table-align () t)
|
|
(setq vc-handled-backends nil)
|
|
(find-file "/input/${file_path}")
|
|
(org-mode)
|
|
(replace-regexp-in-region "foo" "${TARGET_VARIABLE}")
|
|
(message "%s" (pp-to-string (org-element-parse-buffer)))
|
|
)
|
|
EOF
|
|
)
|
|
docker run --init --rm -i --mount type=tmpfs,destination=/tmp -v "/:/input:ro" -w /input --entrypoint "" organic-test emacs -q --no-site-file --no-splash --batch --eval "$INIT_SCRIPT" 2> "${DIR}/${TARGET_VARIABLE}"
|
|
done
|
|
|
|
# exec docker run --init --rm -i -t --mount type=tmpfs,destination=/tmp -v "/:/input:ro" -w /input --entrypoint "" organic-test emacs -q --no-site-file --no-splash --eval "$INIT_SCRIPT"
|
|
|
|
# org-element-dual-keywords ("CAPTION" "RESULTS")
|
|
# org-element-parsed-keywords ("CAPTION")
|
|
# org-element-multiple-keywords ("CAPTION" "HEADER")
|
|
# org-babel-results-keyword "RESULTS"
|