diff options
author | Bill Fumerola <billf@FreeBSD.org> | 1998-12-08 22:09:05 +0000 |
---|---|---|
committer | Bill Fumerola <billf@FreeBSD.org> | 1998-12-08 22:09:05 +0000 |
commit | 6faaa698e4f215f0407eb022e2410e6702e8e2bd (patch) | |
tree | ed654c90a991b9438715e0da049eefa3c367ffed /share/examples/printing/psif | |
parent | c56690ef7b53452d0898b757de3ad1362c75f59d (diff) |
Notes
Diffstat (limited to 'share/examples/printing/psif')
-rw-r--r-- | share/examples/printing/psif | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/examples/printing/psif b/share/examples/printing/psif index 2a657e01aae71..1a816f64888bd 100644 --- a/share/examples/printing/psif +++ b/share/examples/printing/psif @@ -12,12 +12,12 @@ if [ "$first_two_chars" = "%!" ]; then # # PostScript job, print it. # - echo $first_line && cat && printf "\004" && exit 0 + echo "$first_line" && cat && printf "\004" && exit 0 exit 2 else # # Plain text, convert it, then print it. # - ( echo $first_line; cat ) | /usr/local/bin/textps && printf "\004" && exit 0 + ( echo "$first_line"; cat ) | /usr/local/bin/textps && printf "\004" && exit 0 exit 2 fi |