This file is indexed.

/usr/share/slsh/scripts/lsrpm is in slsh 2.3.1-5.

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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#! /usr/bin/env slsh
% Generate a listing of an RPM file

private define pgm_usage ()
{
   vmessage ("Usage: lsrpm FILENAME");
   exit (1);
}

private variable RPM_Command = "rpm -q -l --dump -p ";

private define exit_error (msg)
{
   () = fprintf (stderr, "%s\n", msg);
   exit (1);
}

private define run_rpm (file)
{
   variable fp;
   variable lines;
   variable months =
     ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep",
      "Oct", "Nov", "Dec"];
   variable s;

   fp = popen (RPM_Command + file, "r");
   if (fp == NULL)
     exit_error ("Failed to open RPM process");

   % each line contains:
   % path size mtime md5sum mode owner group isconfig isdoc rdev symlink

   variable six_months_ago = _time () - 3600*24*30*6;

   foreach (fp)
     {
	variable path, size, mode, owner, group, symlink, mtime;
	variable mstring;
	variable tm;

	s = ();
	s = strchop (strtrim_end (s, "\n"), ' ', 0);

	path = s[0];
	size = s[1];
	mtime = integer (s[2]);
	mode = integer (s[4]);
	owner = s[5];
	group = s[6];

	tm = localtime (mtime);
	if (mtime < six_months_ago)
	  mtime = sprintf ("%s %2d %4d",
			   months[tm.tm_mon],
			   tm.tm_mday,
			   1900 + tm.tm_year);
	else
	  mtime = sprintf ("%s %2d % 2d:%02d",
			   months[tm.tm_mon],
			   tm.tm_mday,
			   tm.tm_hour,
			   tm.tm_min);

	symlink = "";
	if (stat_is ("lnk", mode))
	  symlink = " -> " + s[10];

	mstring = stat_mode_to_string (mode);

	if (-1 == fprintf (stdout,
			   "%8s %8s %8s %10s %s %s%s\n",
			   mstring, owner, group, size, mtime, path, symlink))
	  exit_error (sprintf ("Write failed: %s", errno_string (errno)));
     }
   () = pclose (fp);
}

if (__argc != 2)
  pgm_usage ();

run_rpm (__argv[1]);
exit (0);