HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //snap/cups/current/lib/cups/filter/texttops
#!/bin/sh

# texttops - This is a Text-to-PostScript filter for cups-filters
#
# Note: This wrapper filter is only included for backward compatibility with
# certan custom configurations. It is not mentioned in any of the .convs
# files included in this package and therefore never used with the default
# configuration. It makes sure that third-party PPD files referring to
# texttops explicitly or custom configurations (in /etc/cups/*.convs files)
# will not break.
#
# DO NOT create new PPD or .convs files using this filter! texttops is
# DEPRECATED!
#
# (C) 2012 Till Kamppeter <till.kamppeter@gmail.com>
#
# Licensed under Apache License v2.0.  See the file "LICENSE" for more
# information.
#

PDF2PS=`which pdf2ps`

echo "DEBUG: texttops argv[$#] = $@" >&2
echo "DEBUG: PPD: $PPD" >&2

if [ $# -lt 5 -o $# -gt 6 ]; then
    echo "ERROR: $0 job-id user title copies options [file]" >&2
    exit 1
fi

# Read from given file.
if [ -n "$6" ]; then
    exec <"$6"
fi

$CUPS_SERVERBIN/filter/texttopdf "$1" "$2" "$3" "$4" "$5" | $PDF2PS - -