mirror of
https://github.com/TREX-CoE/qmckl.git
synced 2024-11-19 12:32:40 +01:00
9 lines
110 B
Bash
Executable File
9 lines
110 B
Bash
Executable File
#!/bin/bash
|
|
|
|
OUTPUT=$1
|
|
|
|
for i in README.org $(cat $QMCKL_ROOT/src/table_of_contents)
|
|
do
|
|
cat $i >> $1
|
|
done
|