0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 52.15.209.178


Current Path : /proc/self/root/usr/share/language-tools/
Upload File :
Current File : //proc/self/root/usr/share/language-tools/locale2papersize

#!/bin/sh -pe
#
# locale2papersize outputs the paper size "a4" or "letter" based on
# the height and width in the locale that is passed as an argument.

export LC_PAPER=$1

height=$( locale height )
width=$( locale width )

if [ "$height" = 279 -a "$width" = 216 ]; then
    size=letter
else
    size=a4
fi

echo $size