3 lines
176 B
Bash
Executable File
3 lines
176 B
Bash
Executable File
# for i in $(ls chapters); do printf '\\input{chapters/%s}\n\\newpage\n\n' $i; done > chapters.tex
|
|
for i in ./chapters/*.tex; do printf '\\input{%s}\n' $i; done > chapters.tex
|