This file is indexed.

/usr/share/ircII/script/log is in ircii 20060725-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
#	$eterna: log,v 1.2 2001/08/12 15:57:11 mrg Exp $
#
# This is an example showing the use of /wait to get the output from a process and use it.
on ^exec thing assign thing $1
on ^exec_exit thing 
alias _log ^set logfile IrcLog.$thing
alias log.process {
	exec -name thing uptime
	wait %thing
	_log
}
alias log {
	if ( [$0] == [on] )
		{ ^log.process }
	set log $0
}