10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-01 19:05:29 +02:00
QuantumPackage/scripts/TANGLE_org_mode.sh

8 lines
111 B
Bash
Raw Normal View History

2023-04-18 11:20:36 +02:00
#!/bin/sh
list='ls *.org'
for element in $list
do
emacs --batch $element -f org-babel-tangle
done