/usr/share/doc/ircii/example_menu 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 | # $eterna: example_menu,v 1.2 2001/08/12 15:42:27 mrg Exp $
# Test menu to see how our menu reader works
MENU Main Menu
OPTION "This menu" MENU Main Menu
OPTION "List Channels" COMMAND LIST
OPTION "Join Channel" COMMAND JOIN $"Join Channel: "
OPTION "Leave Channel" COMMAND PART *
OPTION "Change Name" COMMAND NICK $"New NickName: "
OPTION "Private Message" COMMAND MSG $"Person to send message to: " $"Text of message: "
OPTION "Say something" COMMAND SAY $"Say: "
OPTION "Exit Menu" EXIT
OPTION "Exit IRC" COMMAND if ( [$"Really quit? "] == [y] ) { QUIT }
OPTION "Kill Menu" COMMAND set -menu
|