mirror of
https://abf.rosa.ru/djam/cups.git
synced 2025-02-23 22:02:46 +00:00
11 lines
205 B
Bash
11 lines
205 B
Bash
#!/bin/bash
|
|
|
|
INPUT=-
|
|
if [ $# == 6 ]
|
|
then
|
|
INPUT=$6
|
|
fi
|
|
|
|
# Extract the papersize
|
|
PAPERSIZE=`grep '^\*DefaultPageSize' "$PPD" | cut -d\ -f2`
|
|
LC_ALL=ja_JP mpage -b$PAPERSIZE -1 -o -f -m18lr36bt -P- "$INPUT"
|