This file is indexed.

/var/lib/pcp/testsuite/291 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#! /bin/sh
# PCP QA Test No. 291
# Check the handling of the log basename alias/duplicate handling
# in pmlogger_merge.  Exercise pmlogextract in passing.
#
# Copyright (c) 1995-2002 Silicon Graphics, Inc.  All Rights Reserved.
#

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

# get standard filters
. ./common.product
. ./common.filter
. ./common.check

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

rm -rf $tmp
mkdir $tmp
cd $tmp

# deal with an annoying libc error ... using TZ=:Australia/Melbourne
# causes the -z option to report the wrong time, at least for some
# times of the year
#
TZ=EST-10
export TZ

# real QA test starts here
base=19970709

pmlogextract -z -T "@22:30" $here/src/rattle $base.22.30-01
pmlogextract -z -S "@22:30" -T "@23:30" $here/src/rattle $base.22.30-02
pmlogextract -z -S "@23:30" -T "@00:30" $here/src/rattle $base.22.30
pmlogextract -z -S "@00:30" -T "@01:30" $here/src/rattle $base.23.10

echo "=== archives before ==="
for arch in $base.22.30-01 $base.22.30-02 $base.22.30 $base.23.10
do
    echo
    echo "::: $arch :::"
    pmdumplog -lzm $arch
done


echo
echo "=== cron.logmerge ==="
pmlogger_merge -Vf '19970709.??.??' 19970709 \
| $PCP_AWK_PROG '
$1 ~ /^-r..r..r../	{ print "... ls details ...",$NF; next }
			{ print }'

echo
echo "=== files after ==="
ls

echo
echo "=== merged archive ==="
pmdumplog -z 19970709

# success, all done
status=0
exit