Как установить количество символов в строке при печати файла с использованием lp или lpr? Похоже, что он установлен на 80.
Вы можете установить количество символов на дюйм с помощью -o cpi
и поля в пунктах (72 на дюйм) с -o page-left
и -o page-right
. Например:
lp -d main -o cpi=10 -o lpi=8 -o page-left=72 -o page-right=72 filename
будет печатать 75 символов в строке (при условии, что шрифт фиксированной ширины и страница шириной 8,5 дюймов).
Из man lp
в системе на основе CUPS (Ubuntu 9.10):
Example: Print a text file with 12 characters per inch, 8 lines per inch, and a 1 inch left margin: lp -d bar -o cpi=12 -o lpi=8 -o page-left=72 filename
и
-o cpi=N Sets the number of characters per inch to use when printing a text file. The default is 10. -o lpi=N Sets the number of lines per inch to use when printing a text file. The default is 6. -o page-bottom=N -o page-left=N -o page-right=N -o page-top=N Sets the page margins when printing text files. The values are in points - there are 72 points to the inch.