Is there's an Adobe product to do automated command line conversion of
TEXT files to PDF files ?
Thanks
No idea, but for free you can just use LaTeX's VerbatimInput to generate
a PDF from any plaintext file.
$ cat <<EOF >temp.tex;pdflatex temp.tex
\documentclass{article}
\usepackage[margin=1in]{geometry}
\usepackage{fancyvrb}
\begin{document}
\VerbatimInput{yourfilename.txt}
\end{document}
EOF
///Peter
Just find it here: http://www.allpdftools.com/resources/hot-tips.html