Ali Milis wrote: > Hi, > > Is there any (free) tool that converts TXT to PDF files? > Or is there any OpenOffice line command options that > can do that? > > thanks, > given a text file foo.txt, first convert it to pdf: $> a2ps -o foo.ps foo.txt then convert resulting ps file to a pdf file: $> ps2pdf foo.ps and you will get foo.pdf. ->HS