PATH:
usr
/
bin
#!/bin/sh # # BSD PRINT FILTER SETUP utility for Ghostscript - used and tested on # SunOS 4.1.3, but I hope it will be useful on other BSD systems # See documentation for usage # GSPATH= while [ $# -gt 0 ] do case "$1" in -p) GSPATH="$2"/lib/ghostscript; shift;; -h) echo >&2 \ "usage: $0 [-p <gs install prefix>]\n"\ "Where <gs install prefix> is the ""prefix""\n"\ "for the Ghostscript install - the default is\n"\ """/usr/local""" exit 1;; -*) echo >&2 \ "usage: $0 [-p <gs install prefix>]" exit 1;; *) break;; # terminate while loop esac shift done DEVICES="bjt600.32 bjc600.32 bjc600.24 bjc600.24.3 bjc600.16 bjc600.8 bjc600.8.1 bjc600.1 bjc600.dq" #FILTERS="if nf tf gf vf df cf rf" FILTERS="if" # The port your printer is on PRINTERDEV=/dev/lp1 # The kind of printer (accepted values: 'parallel' and 'serial') PRINTERTYPE=parallel if [ "x$GSPATH"="x" ] ; then GSDIR=`which gs | awk -F / 'sub(FS $NF,x)' | awk -F / 'sub(FS $NF,x)'`/lib/ghostscript else GSDIR=$GSPATH fi GSFILTERDIR=$GSDIR/filt SPOOLDIR=/var/spool GSIF=unix-lpr.sh PCAP=printcap.insert if [ "x$GSPATH"="x" ] ; then echo "Warning: Writing filters to $GSFILTERDIR" echo "if you do not want this, you have 10 seconds to hit ^c to abort this script:" for i in 10 09 08 07 06 05 04 03 02 01 continuing....; do sleep 1 echo -n echo -n $i done echo fi PATH=/bin:/usr/bin:/usr/ucb export PATH if [ ! -w $GSDIR ]; then echo "$GSDIR must be writable to create filter directory" exit 1 fi echo " Making links in the filter directory $GSFILTERDIR ... " # # Make the directory for holding the filter and links # if [ -d $GSFILTERDIR ]; then echo "$GSFILTERDIR already exists - not created" else mkdir $GSFILTERDIR fi rm -f $GSFILTERDIR/direct ln -s . $GSFILTERDIR/direct rm -f $GSFILTERDIR/indirect ln -s . $GSFILTERDIR/indirect # # Create a link from each filtertype to the real filter script # for filter in $FILTERS do rm -f $GSFILTERDIR/gs$filter ln -s ../$GSIF $GSFILTERDIR/gs$filter done # # Create a link from each device to the filter directory # for device in $DEVICES do dualqueue= case "$device" in *.dq) device=`basename $device .dq` ; dualqueue=t ;; esac rm -f $GSFILTERDIR/$device if [ $dualqueue ]; then rm -f $GSFILTERDIR/indirect/$device ln -s . $GSFILTERDIR/indirect/$device else rm -f $GSFILTERDIR/direct/$device ln -s . $GSFILTERDIR/direct/$device fi done # # Create a basic printcap insert - this is made in the CURRENT directory # rm -f $PCAP cat > $PCAP << EOF # This is an example printcap insert for Ghostscript printers # You will probably want either to change the names for each printer # below (first line for each device) to something more sensible, or # to add additional name entries (eg cdjcolor for cdj500.24) # The example is shown set up for $PRINTERTYPE printers - you will need # to alter the entries for different or networked remote printer, # eg. a remote network printer would have a line something like: # :lp=:rm=artemis:rp=LPT1: # for a PC called artemis, replacing the serial port settings # # NB/ This is only an example - it is unlikely to be complete or exactly # correct for your system, but is designed to illustrate filter names # corresponding to the accompanying bsd-if print filter # EOF ( previous=undefined for device in $DEVICES do dualqueue= case "$device" in *.dq) device=`basename $device .dq` ; dualqueue=t ;; esac base="`echo $device | sed 's/\.[0-9][0-9]*$//'`" base="`echo $base | sed 's/\.[0-9][0-9]*$//'`" # # If device listed with '.dq' suffix, we set up a separate output queue # if [ $dualqueue ]; then if [ $base != $previous ]; then previous=$base echo "\ # Entry for raw device $base.raw $base.raw|Raw output device $base:\\ :lp=$PRINTERDEV:\\" if test "$PRINTERTYPE" = serial then echo "br#19200:xc#0177777:\\" echo ":ms=-parity,ixon,-opost:\\" fi echo ":sd=$SPOOLDIR/$base/raw:\\ :mx#0:sf:sh:rs:" fi echo "\ # Entry for device $device (output to $base.raw) $device|Ghostscript device $device:\\ :lp=/dev/null:\\" else echo "\ # Entry for device $device $device|Ghostscript device $device:\\ :lp=$PRINTERDEV:\\" if test "$PRINTERTYPE" = serial then echo "br#19200:xc#0177777:\\" echo ":ms=-parity,ixon,-opost:\\" fi fi echo "\ :sd=$SPOOLDIR/$base:\\ :lf=$SPOOLDIR/$base/logfile:\\ :af=$SPOOLDIR/$base/acct:\\" for filter in $FILTERS do if [ $dualqueue ]; then echo "\ :$filter=$GSFILTERDIR/indirect/$device/gs$filter:\\" else echo "\ :$filter=$GSFILTERDIR/direct/$device/gs$filter:\\" fi done echo "\ :mx#0:sf:sh:rs:" done ) >> $PCAP echo " Example printcap insert file \"$PCAP\" now created" # # Remind the user what's still to do # echo " NB/ You will need to create the following directories, with appropriate permissions, and do 'touch logfile' and 'touch acct' in the top level directories (ie. not the 'raw' ones): " ( for device in $DEVICES do dualqueue= case "$device" in *.dq) device=`basename $device .dq` ; dualqueue=t ;; esac base="`echo $device | sed 's/\.[0-9][0-9]*$//'`" base="`echo $base | sed 's/\.[0-9][0-9]*$//'`" echo " $SPOOLDIR/$base" if [ $dualqueue ]; then echo " $SPOOLDIR/$base/raw" fi done ) | sort -u echo " + + + "
[+]
..
[-] pod2html
[edit]
[-] mysqlcheck
[edit]
[-] passwd
[edit]
[-] scl_enabled
[edit]
[-] hostname
[edit]
[-] basename
[edit]
[-] git
[edit]
[-] timeout
[edit]
[-] pfbtopfa
[edit]
[-] tmpwatch
[edit]
[-] autoconf
[edit]
[-] sh
[edit]
[-] precat
[edit]
[-] zipgrep
[edit]
[-] mkdir
[edit]
[-] perlivp
[edit]
[-] strings
[edit]
[-] look
[edit]
[-] bashbug-64
[edit]
[-] zcat
[edit]
[-] sha1sum
[edit]
[-] cpp
[edit]
[-] identify
[edit]
[-] s2p
[edit]
[-] logname
[edit]
[-] git-upload-archive
[edit]
[-] sprof
[edit]
[-] perlbug
[edit]
[-] Wand-config
[edit]
[-] import
[edit]
[-] iconv
[edit]
[-] batch
[edit]
[-] ipcs
[edit]
[-] gsnd
[edit]
[-] find
[edit]
[-] Mail
[edit]
[-] gcc
[edit]
[-] pango-querymodules-64
[edit]
[-] aclocal-1.13
[edit]
[-] lesspipe.sh
[edit]
[-] ps2pdfwr
[edit]
[-] bash
[edit]
[-] uniq
[edit]
[-] fc-validate
[edit]
[-] fc-match
[edit]
[-] link
[edit]
[-] slabtop
[edit]
[-] find2perl
[edit]
[-] gpg
[edit]
[-] znew
[edit]
[-] gzip
[edit]
[-] tset
[edit]
[-] watch
[edit]
[-] ifnames
[edit]
[-] zfgrep
[edit]
[-] column
[edit]
[-] echo
[edit]
[-] which
[edit]
[-] df
[edit]
[-] xsubpp
[edit]
[-] gslj
[edit]
[-] gawk
[edit]
[-] view
[edit]
[-] troff
[edit]
[-] display
[edit]
[-] igawk
[edit]
[-] tac
[edit]
[-] nm
[edit]
[-] ps2pdf13
[edit]
[-] false
[edit]
[-] pmap
[edit]
[-] ps2pdf12
[edit]
[-] run-with-aspell
[edit]
[-] mysqlbinlog
[edit]
[-] gpg2
[edit]
[-] screen
[edit]
[-] geqn
[edit]
[-] free
[edit]
[-] setsid
[edit]
[-] post-grohtml
[edit]
[-] expand
[edit]
[-] diff
[edit]
[-] rmdir
[edit]
[-] hostid
[edit]
[-] mysqlimport
[edit]
[-] less
[edit]
[-] c++filt
[edit]
[-] ul
[edit]
[-] du
[edit]
[-] nsupdate
[edit]
[-] git-upload-pack
[edit]
[-] gpgv
[edit]
[-] egrep
[edit]
[-] hunspell
[edit]
[-] lex
[edit]
[-] colrm
[edit]
[-] prezip-bin
[edit]
[-] wc
[edit]
[-] skill
[edit]
[-] unexpand
[edit]
[-] groups
[edit]
[-] pango-view
[edit]
[-] login
[edit]
[-] soelim
[edit]
[-] pr
[edit]
[-] rename
[edit]
[-] who
[edit]
[-] zless
[edit]
[-] cut
[edit]
[-] selectorctl
[edit]
[-] arch
[edit]
[-] scp
[edit]
[-] size
[edit]
[-] gprof
[edit]
[-] dirname
[edit]
[-] rnano
[edit]
[-] ssh-agent
[edit]
[-] ghostscript
[edit]
[-] compare
[edit]
[-] lessecho
[edit]
[-] conjure
[edit]
[-] pdf2dsc
[edit]
[-] utmpdump
[edit]
[-] pphs
[edit]
[-] pf2afm
[edit]
[-] x86_64-redhat-linux-g++
[edit]
[-] autoscan
[edit]
[-] fc-conflist
[edit]
[-] dvipdf
[edit]
[-] tclsh8.5
[edit]
[-] atq
[edit]
[-] date
[edit]
[-] sqlite3
[edit]
[-] paste
[edit]
[-] stat
[edit]
[-] python2.7
[edit]
[-] perl5.16.3
[edit]
[-] strace
[edit]
[-] freetype-config
[edit]
[-] grotty
[edit]
[-] cc
[edit]
[-] nroff
[edit]
[-] flex++
[edit]
[-] join
[edit]
[-] grep
[edit]
[-] dbiprof
[edit]
[-] toe
[edit]
[-] ssh-keygen
[edit]
[-] rvi
[edit]
[-] ptx
[edit]
[-] ipcrm
[edit]
[-] reset
[edit]
[-] openssl
[edit]
[-] mesg
[edit]
[-] snice
[edit]
[-] pathchk
[edit]
[-] bzdiff
[edit]
[-] pod2latex
[edit]
[-] vdir
[edit]
[-] nice
[edit]
[-] ispell
[edit]
[-] delv
[edit]
[-] dbiproxy
[edit]
[-] funzip
[edit]
[-] gpg-error
[edit]
[-] pl2pm
[edit]
[-] tload
[edit]
[-] zipnote
[edit]
[-] gsoelim
[edit]
[-] chrt
[edit]
[-] objdump
[edit]
[-] pstruct
[edit]
[-] whereis
[edit]
[-] convert
[edit]
[-] zipinfo
[edit]
[-] id
[edit]
[-] gtbl
[edit]
[-] objcopy
[edit]
[-] getent
[edit]
[-] catchsegv
[edit]
[-] nproc
[edit]
[-] mkfifo
[edit]
[-] test
[edit]
[-] addr2line
[edit]
[-] gzexe
[edit]
[-] namei
[edit]
[-] infocmp
[edit]
[-] dir
[edit]
[-] sdiff
[edit]
[-] script
[edit]
[-] comm
[edit]
[-] stream
[edit]
[-] touch
[edit]
[-] c++
[edit]
[-] gtar
[edit]
[-] kill
[edit]
[-] rev
[edit]
[-] rm
[edit]
[-] pwdx
[edit]
[-] zmore
[edit]
[-] pod2man
[edit]
[-] montage
[edit]
[-] splain
[edit]
[-] mv
[edit]
[-] awk
[edit]
[-] ssh-add
[edit]
[-] stty
[edit]
[-] bzmore
[edit]
[-] chmod
[edit]
[-] gpg-agent
[edit]
[-] wget
[edit]
[-] dig
[edit]
[-] printf
[edit]
[-] pkill
[edit]
[-] g++
[edit]
[-] gpic
[edit]
[-] infotocap
[edit]
[-] shred
[edit]
[-] ps2epsi
[edit]
[-] net-snmp-create-v3-user
[edit]
[-] gsdj
[edit]
[-] raw
[edit]
[-] unzipsfx
[edit]
[-] animate
[edit]
[-] grops
[edit]
[-] spell
[edit]
[-] gcc-ar
[edit]
[-] bzless
[edit]
[-] mailx
[edit]
[-] xsltproc
[edit]
[-] uapi
[edit]
[-] mysqldump
[edit]
[-] pinky
[edit]
[-] yes
[edit]
[-] ldd
[edit]
[-] pinentry-curses
[edit]
[-] stdbuf
[edit]
[-] pod2text
[edit]
[-] split
[edit]
[-] tar
[edit]
[-] fc-list
[edit]
[-] scl
[edit]
[-] pgrep
[edit]
[-] logger
[edit]
[-] chcon
[edit]
[-] zdiff
[edit]
[-] h2xs
[edit]
[-] more
[edit]
[-] top
[edit]
[-] realpath
[edit]
[-] bzgrep
[edit]
[-] psed
[edit]
[-] setterm
[edit]
[-] od
[edit]
[-] rview
[edit]
[-] mktemp
[edit]
[-] gem
[edit]
[-] col
[edit]
[-] xmllint
[edit]
[-] gslp
[edit]
[-] composite
[edit]
[-] nano
[edit]
[-] podchecker
[edit]
[-] gnroff
[edit]
[-] Magick-config
[edit]
[-] eps2eps
[edit]
[-] cpan
[edit]
[-] ps2pdf14
[edit]
[-] neqn
[edit]
[-] ranlib
[edit]
[-] autoheader
[edit]
[-] gpgsplit
[edit]
[-] pwd
[edit]
[-] flock
[edit]
[-] chgrp
[edit]
[-] geoiplookup
[edit]
[-] unix-lpr.sh
[edit]
[-] x86_64-redhat-linux-c++
[edit]
[-] aclocal
[edit]
[-] zsoelim
[edit]
[-] php
[edit]
[-] expr
[edit]
[-] xmlwf
[edit]
[-] sftp
[edit]
[-] fmt
[edit]
[-] piconv
[edit]
[-] tail
[edit]
[-] pydoc
[edit]
[-] bison
[edit]
[-] nl
[edit]
[-] pic
[edit]
[-] pkg-config
[edit]
[-] libnetcfg
[edit]
[-] shuf
[edit]
[-] gunzip
[edit]
[-] lesskey
[edit]
[-] file
[edit]
[-] cp
[edit]
[-] snmpconf
[edit]
[-] ar
[edit]
[-] users
[edit]
[-] c99
[edit]
[-] host
[edit]
[-] crontab
[edit]
[-] mogrify
[edit]
[-] gcc-ranlib
[edit]
[-] c2ph
[edit]
[-] vi
[edit]
[-] readelf
[edit]
[-] gcc-nm
[edit]
[-] git-shell
[edit]
[-] automake-1.13
[edit]
[-] python
[edit]
[-] ld
[edit]
[-] sed
[edit]
[-] sync
[edit]
[-] diff3
[edit]
[-] a2p
[edit]
[-] taskset
[edit]
[-] tput
[edit]
[-] cagefs_enter.proxied
[edit]
[-] zcmp
[edit]
[-] fgrep
[edit]
[-] env
[edit]
[-] autom4te
[edit]
[-] make
[edit]
[-] curl
[edit]
[-] cksum
[edit]
[-] fc-cat
[edit]
[-] bunzip2
[edit]
[-] gcov
[edit]
[-] ld.bfd
[edit]
[-] locale
[edit]
[-] python2
[edit]
[-] cldetect
[edit]
[-] podselect
[edit]
[-] perlthanks
[edit]
[-] sha256sum
[edit]
[-] sha224sum
[edit]
[-] tsort
[edit]
[-] ionice
[edit]
[-] agentxtrap
[edit]
[-] nohup
[edit]
[-] h2ph
[edit]
[-] captoinfo
[edit]
[-] zipcloak
[edit]
[-] cal
[edit]
[-] instmodsh
[edit]
[-] tbl
[edit]
[-] fc-scan
[edit]
[-] fc-query
[edit]
[-] ex
[edit]
[-] GET
[edit]
[-] replace
[edit]
[-] ls
[edit]
[-] pango-list
[edit]
[-] gpgv2
[edit]
[-] ps2ps2
[edit]
[-] numfmt
[edit]
[-] gmake
[edit]
[-] lprsetup.sh
[edit]
[-] dd
[edit]
[-] printafm
[edit]
[-] idn
[edit]
[-] head
[edit]
[-] fc-pattern
[edit]
[-] xargs
[edit]
[-] tic
[edit]
[-] chown
[edit]
[-] printenv
[edit]
[-] mysql
[edit]
[-] csplit
[edit]
[-] install
[edit]
[-] prezip
[edit]
[-] getconf
[edit]
[-] eqn
[edit]
[-] bzip2
[edit]
[-] at
[edit]
[-] perldoc
[edit]
[-] fc-cache
[edit]
[-] ps2ps
[edit]
[-] sleep
[edit]
[-] gpg-zip
[edit]
[-] vmstat
[edit]
[-] prove
[edit]
[-] base64
[edit]
[-] uname
[edit]
[-] as
[edit]
[-] ping
[edit]
[-] pre-grohtml
[edit]
[-] unlink
[edit]
[-] fold
[edit]
[-] gsbj
[edit]
[-] perl
[edit]
[-] tabs
[edit]
[-] clear
[edit]
[-] mysqladmin
[edit]
[-] aspell
[edit]
[-] colcrt
[edit]
[-] libtool
[edit]
[-] libtoolize
[edit]
[-] slogin
[edit]
[-] dircolors
[edit]
[-] ln
[edit]
[-] groff
[edit]
[-] tclsh
[edit]
[-] preunzip
[edit]
[-] uptime
[edit]
[-] perlml
[edit]
[-] getopt
[edit]
[-] zforce
[edit]
[-] gneqn
[edit]
[-] ssh
[edit]
[-] readlink
[edit]
[-] mdig
[edit]
[-] enchant
[edit]
[-] m4
[edit]
[-] tzselect
[edit]
[-] ruby
[edit]
[-] gencat
[edit]
[-] cat
[edit]
[-] gs
[edit]
[-] x86_64-redhat-linux-gcc
[edit]
[-] nslookup
[edit]
[-] unzip
[edit]
[-] sha512sum
[edit]
[-] bzip2recover
[edit]
[-] autoupdate
[edit]
[-] gtroff
[edit]
[-] mail
[edit]
[-] git-receive-pack
[edit]
[-] MagickCore-config
[edit]
[-] isosize
[edit]
[-] pod2usage
[edit]
[-] localedef
[edit]
[-] mysql_config
[edit]
[-] MagickWand-config
[edit]
[-] tr
[edit]
[-] tty
[edit]
[-] tailf
[edit]
[-] ps2pdf
[edit]
[-] enchant-lsmod
[edit]
[-] word-list-compress
[edit]
[-] crontab.cagefs
[edit]
[-] pdf2ps
[edit]
[-] scl_source
[edit]
[-] sum
[edit]
[-] bzcmp
[edit]
[-] hexdump
[edit]
[-] truncate
[edit]
[-] ps2ascii
[edit]
[-] zip
[edit]
[-] cmp
[edit]
[-] zipsplit
[edit]
[-] seq
[edit]
[-] zgrep
[edit]
[-] ps
[edit]
[-] true
[edit]
[-] mknod
[edit]
[-] mysqlshow
[edit]
[-] autoreconf
[edit]
[-] flex
[edit]
[-] patch
[edit]
[-] my_print_defaults
[edit]
[-] renice
[edit]
[-] gsdj500
[edit]
[-] fc-cache-64
[edit]
[-] geoiplookup6
[edit]
[-] ssh-keyscan
[edit]
[-] c89
[edit]
[-] rpcgen
[edit]
[-] tee
[edit]
[-] automake
[edit]
[-] bzcat
[edit]
[-] whoami
[edit]
[-] sha384sum
[edit]
[-] runcon
[edit]
[-] ssh-copy-id
[edit]
[-] strip
[edit]
[-] md5sum
[edit]
[-] sort
[edit]
[-] zegrep
[edit]
[-] factor
[edit]
[-] pinentry
[edit]
[-] mysql_config-64
[edit]
[-] pgawk
[edit]
[-] [
[edit]
[-] mcookie
[edit]
[-] atrm
[edit]
[-] xmlcatalog
[edit]