무료이며 오픈 소스 인 text2pdf를 사용하십시오 . 링크에서 소스, 윈도우, 솔라리스, dos를위한 사전 컴파일 된 바이너리를 다운로드 할 수 있습니다.
문제없이 AIX OS에서 사용할 수 있습니다. 매우 간단한 컴파일, text2pdf.c와 Makefile을 같은 디렉토리에 저장하십시오 make
. (여기서는 AIX에서 CC = gcc 변수를 설정했지만 Linux에서는 이것이 문제가되지 않습니다)
$ ./text2pdf -h
text2pdf [options] [filename]
text2pdf makes a 7-bit clean PDF file (version 1.1) from any input file.
It reads from standard input or a named file, and writes the PDF file
to standard output.
There are various options as follows:
-h show this message
-f<font> use PostScript <font> (must be in standard 14, default: Courier)
-I use ISOLatin1Encoding
-s<size> use font at given pointsize (default 10)
-v<dist> use given line spacing (default 12 points)
-l<lines> lines per page (default 60, determined automatically
if unspecified)
-c<chars> maximum characters per line (default 80)
-t<spaces> spaces per tab character (default 8)
-F ignore formfeed characters (^L)
-A4 use A4 paper (default Letter)
-A3 use A3 paper (default Letter)
-x<width> independent paper width in points
-y<height> independent paper height in points
-2 format in 2 columns
-L landscape mode
Note that where one variable is implied by two options, the second option
takes precedence for that variable. (e.g. -A4 -y500)
In landscape mode, page width and height are simply swapped over before
formatting, no matter how or when they were defined.
text2pdf v1.1 (c) Phil Smith, 1996
$ ./text2pdf -f"Courier" -s6 -c216 -v6 -L -A4 ./rep3.txt >rep3.pdf
for ONELINE in *
대신 사용해야 합니다ls | while read ONELINE
. 이것을 읽으십시오 .