This file is indexed.

/var/lib/pcp/testsuite/1094.out is in pcp-testsuite 4.0.1-1.

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
QA output created by 1094

input $dir |/some/path| $args |-c someconfig|
processed $dir |/some/path| $args |-c someconfig|

input $dir |${mydir}/xyz| $args |-c someconfig|
processed $dir |/some/path/xyz| $args |-c someconfig|

input $dir |/xyz${mydir}| $args |-c someconfig|
processed $dir |/xyz/some/path| $args |-c someconfig|

input $dir |/xyz$mydir| $args |-c someconfig|
processed $dir |/xyz/some/path| $args |-c someconfig|

input $dir |$(echo| $args |/some/path) -c someconfig|
processed $dir |/some/path| $args |-c someconfig|

input $dir |$(| $args |echo /some/path ) -c someconfig|
processed $dir |/some/path| $args |-c someconfig|

input $dir |"/some/path/$(date| $args |+2015)" -c someconfig|
processed $dir |/some/path/2015| $args |-c someconfig|

input $dir |"| $args |/some/path/$(date +2015) " -c someconfig|
processed $dir | /some/path/2015 | $args |-c someconfig|

input $dir |`echo| $args |/some/path` -c someconfig|
processed $dir |/some/path| $args |-c someconfig|

input $dir |`| $args |echo /some/path ` -c someconfig|
processed $dir |/some/path| $args |-c someconfig|

input $dir |"/some/path/`date| $args |+2015`" -c someconfig|
processed $dir |/some/path/2015| $args |-c someconfig|

input $dir |$(bad| $args |command -c someconfig|
[<stdin>:12]
Error: quote not terminated: $(bad command -c someconfig
processed $dir |$(bad| $args |command -c someconfig|

input $dir |`bad| $args |command -c someconfig|
[<stdin>:13]
Error: quote not terminated: `bad command -c someconfig
processed $dir |`bad| $args |command -c someconfig|

input $dir |"bad| $args |string -c someconfig|
[<stdin>:14]
Error: quote not terminated: "bad string -c someconfig
processed $dir |"bad| $args |string -c someconfig|

input $dir |"embedded_backquote`date| $args |+2015`.postfix" -c someconfig|
processed $dir |embedded_backquote2015.postfix| $args |-c someconfig|

input $dir |bad_embedded_backquote`date| $args |+2015`.postfix -c someconfig|
[<stdin>:16]
Error: embedded ` without enclosing ": bad_embedded_backquote`date
processed $dir |bad_embedded_backquote`date| $args |+2015`.postfix -c someconfig|

input $dir |"embedded_cmd$(date| $args |+2015).postfix" -c someconfig|
processed $dir |embedded_cmd2015.postfix| $args |-c someconfig|

input $dir |bad_embedded_cmd$(date| $args |+2015).postfix -c someconfig|
[<stdin>:18]
Error: embedded $( without enclosing ": bad_embedded_cmd$(date
processed $dir |bad_embedded_cmd$(date| $args |+2015).postfix -c someconfig|