This file is indexed.

/usr/share/yodl/chartables/shell.tables.yo is in yodl 4.02.00-2.

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
COMMENT(*** Escape active chars ***)

COMMENT(
SUBST(\)(\\)
SUBST(')(\')
SUBST(")(\")
SUBST(*)(\*)
SUBST(`)(\`)
SUBST(CHAR(C)HAR(40))(\CHAR(C)HAR(40))
SUBST(CHAR(C)HAR(41))(\CHAR(C)HAR(41))
SUBST([)(\[)
SUBST(])(\])
)

COMMENT(
    CHAR(C)HAR(40) = \CHAR(C)HAR(40)
    CHAR(C)HAR(41) = \CHAR(C)HAR(41)
)

DEFINECHARTABLE(shell)(
    '\' = "\\"
    ''' = "\'"
    '"' = "\""
    '*' = "\*"
    '`' = "\`"
    '[' = "\["
    ']' = "\]"
    '{' = "\{"
    '}' = "\}"
)