This file is indexed.

/usr/share/epic5/script/motd is in epic5 1.1.11-1build1.

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
if (word(2 $loadinfo()) != [pf]) { load -pf $word(1 $loadinfo()); return; };

# Here's the plan
# Output the MOTD for the user.
# Load this in "local" for maximum effect.

load less;
@ date = ftime(~/.ircII.motd);
@ fdate = ftime($irclib()/ircII.motd);
if (fdate && (date < fdate))
{
	less $irclib()/ircII.motd;
	exec touch ~/.ircII.motd;
};

#hop'97