2 lines
97 B
Bash
2 lines
97 B
Bash
|
for i in $(ls chapters); do printf '\\input{chapters/%s}\n\\newpage\n\n' $i; done > chapters.tex
|