This file is indexed.

/usr/share/apsfilter/driver/omni/Canon_BJC_600e is in apsfilter 7.2.6-1.3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
# $ApsCVS: src/apsfilter/driver/omni/Canon_BJC_600e,v 1.1.2.1 2002/01/09 21:06:33 andreas Exp $

case "$QUALITY" in
	draft)	RESOLUTION=90x90
		props="resolution=RESOLUTION_90_X_90" ;;
	low)	RESOLUTION=180x180
		props="resolution=RESOLUTION_180_X_180" ;;
	*)	RESOLUTION=360x360
		props="resolution=RESOLUTION_360_X_360" ;;
esac

case "$COLOR" in
	full)	props="$props printmode=PRINT_MODE_24_CMYK" ;;
	gray)	props="$props printmode=PRINT_MODE_8_CMYK" ;;
	mono)	props="$props printmode=PRINT_MODE_1_ANY" ;;
esac

case "$MEDIA" in
	plain)		props="$props media=MEDIA_PLAIN" ;;
	coated)		props="$props media=MEDIA_COATED" ;;
	glossy|premium)	props="$props media=MEDIA_GLOSSY" ;;
	trans)		props="$props media=MEDIA_TRANSPARENCY" ;;
esac

case "$PAPERSIZE" in
	a4)	props="$props form=FORM_A4" ;;
	letter)	props="$props form=FORM_LETTER" ;;
	legal)	props="$props form=FORM_LEGAL" ;;
esac

GS_FEATURES="$GS_FEATURES -sproperties='$props'"