10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-02 03:15:19 +02:00
QCaml/bin/tangle.sh
2021-01-01 16:39:33 +01:00

25 lines
386 B
Bash
Executable File

#!/bin/bash
# Usage: $0 [DIR]
if [[ -z $1 ]] ; then
echo "Usage: $0 [DIR]"
exit -1
fi
if [[ $(basename $PWD) != "QCaml" ]] ; then
echo "This script needs to be run in the QCaml directory"
exit -1
fi
DIR=${1%/}
cd $DIR
for i in *.org
do
echo "--- $i ----"
emacs --batch ./$i --load=../docs/config_tangle.el -f org-babel-tangle
done