mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-03 12:43:48 +01:00
8 lines
111 B
Bash
Executable File
8 lines
111 B
Bash
Executable File
#!/bin/sh
|
|
|
|
list='ls *.org'
|
|
for element in $list
|
|
do
|
|
emacs --batch $element -f org-babel-tangle
|
|
done
|