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