summaryrefslogtreecommitdiff
path: root/korean/hpscat/files/hpscat.sh
blob: 964104cfb8c15d8e8edbf4cacba24e2f156a3dd3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/sh
#
# hpscat fontend for FreeBSD ports
#
# 4 Apr 1997, Choi Jun Ho <junker@jazz.snu.ac.kr>
#
# It enables hpscat to print file without loading font in gs
#

HFONTPATH=%%PREFIX%%/share/fonts/ked-hpscat

options=$*
fileoutput=0

# check if -f option is specified
for i in $*
do
        case $i in
              -f)       fileoutput=1; shift;;
        esac
done

if [ $fileoutput != 1 ]; then
# print font header
  cat $HFONTPATH/Header
  for hfont in Munjo Gotic MunjoBold PCMunjo
  do
   cat $HFONTPATH/$hfont
  done
fi

exec hpscat.bin $options