mirror of
https://github.com/TREX-CoE/qmckl.git
synced 2024-12-23 04:44:03 +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
|