Blame backend/pseudo

Packit 2fc92b
#!/bin/sh
Packit 2fc92b
#
Packit 2fc92b
# Psuedo-backend for CUPS testing purposes.
Packit 2fc92b
#
Packit 2fc92b
# Copyright 2011 by Apple Inc.
Packit 2fc92b
#
Packit 2fc92b
# These coded instructions, statements, and computer programs are the
Packit 2fc92b
# property of Apple Inc. and are protected by Federal copyright
Packit 2fc92b
# law.  Distribution and use rights are outlined in the file "LICENSE.txt"
Packit 2fc92b
# which should have been included with this file.  If this file is
Packit 2fc92b
# file is missing or damaged, see the license at "http://www.cups.org/".
Packit 2fc92b
#
Packit 2fc92b
# This file is subject to the Apple OS-Developed Software exception.
Packit 2fc92b
#
Packit 2fc92b
Packit 2fc92b
if test $# = 0; then
Packit 2fc92b
	echo 'direct pseudo:///deskjet "HP DeskJet" "HP DeskJet (pseudo)" "MFG:HP;MDL:DeskJet;CMD:PCL;" "Nowhere"'
Packit 2fc92b
	echo 'direct pseudo:///laserjet "HP LaserJet" "HP LaserJet (pseudo)" "MFG:HP;MDL:LaserJet;CMD:PCL;" "Nowhere"'
Packit 2fc92b
	exit 0
Packit 2fc92b
fi
Packit 2fc92b
Packit 2fc92b
cat $6 >/dev/null
Packit 2fc92b
sleep 5
Packit 2fc92b
exit 0