mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-28 16:03:48 +02:00
11 lines
264 B
Tcsh
11 lines
264 B
Tcsh
#!/bin/csh
|
|
set texfile="all.tex"
|
|
echo '\documentclass{article}' >$texfile
|
|
echo '\usepackage{fpk}' >>$texfile
|
|
echo '\usepackage{a4}' >>$texfile
|
|
echo '\\begin{document}' >>$texfile
|
|
foreach f ( $* )
|
|
echo "\input{$f}" >>$texfile
|
|
end
|
|
echo "\end{document}" >>$texfile
|