This method will run a short test of the attribute system. It will use a
dummy attribute called Frog that will be created and deleted by this
test process.
The currently-supported command-line options are as follows.
Name suffix to be used for log files. If omitted, the PID is used.
Numeric trace level. A higher trace level causes more messages to appear. The
default trace level is 2. Tracing will be directly to the standard output
as well as to a traceUser.log file in the FIG temporary directory,
where User is the value of the user option above.
If specified, turns on tracing of SQL activity.
Save the standard and error output to files. The files will be created
in the FIG temporary directory and will be named errUser.log and
outUser.log, respectively, where User is the value of the
user option above.
Display this command's parameters and options.
Phone number to message when the script is complete.
my $matchFlag = MatchLists($list1, $list2);
Return TRUE if the two lists have the same elements, else FALSE. The matching is done purely stringwise.
Reference to a list of items.
Reference to another list of items.
Returns TRUE if the lists have matching elements.
my $matchFlag = MatchListsOfLists($list1, $list2);
Compares two lists of lists, ensuring that both of the main lists have matching elements (though not necessarily in the same order.
Reference to the first list of lists.
Reference to the second list of lists.
Returns TRUE if every sublist in the first list is found in the second list and vice versa.