This file is indexed.

/var/lib/pcp/testsuite/991 is in pcp-testsuite 3.9.10.

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

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
#!/bin/sh
# PCP QA Test No. 991
# Exercise the pcp-free(1) command using an archive
#
# Copyright (c) 2014 Red Hat.
#

seq=`basename $0`
echo "QA output created by $seq"

. ./common.python

status=1	# failure is the default!
$sudo rm -rf $tmp.* $seq.full
trap "cd $here; rm -rf $tmp.*; exit \$status" 0 1 2 3 15

archive="-a $here/src/pcp-free -z"
archive_first="$archive -O +1"
archive_last="$archive -O -0"

# real QA test starts here
echo && echo === free output, at first sample
pcp $archive_first free

echo && echo === free output, at last sample
pcp $archive_last free

echo && echo === free output, bytes
pcp $archive_first free -b

echo && echo === free output, megabytes
pcp $archive_first free -m

echo && echo === free output, gigabytes
pcp $archive_first free -g

echo && echo === free output, totals + in megabytes
pcp $archive_first free -t -m

echo && echo === free output, compat + low/high detail
pcp $archive_first free -o -l

echo && echo === free output, multiple samples
pcp $archive_first free -c 2 -s 2.5

status=0
exit