From the NannyMUD documentation
2000-12-18
NAME
callinfo - information about call_outsSYNTAX
callinfo [-p name] [-l time] [-u time] [-e] [-s] [-f] [-r] [glob]DESCRIPTION
This wiztool command shows some information about call_outs, namely the time left, the file name of the object and the name of the function that will be called. Different things will happen depending on the parameters given to the command.None Show the call_outs for you, based on efun creator(). glob Show the call_outs for objects whose file_name matches 'glob'. The match is performed using the efun 'glob'. -p wiz Show the call_outs for the wizard 'wiz'. This use over-rides any 'glob' patterns. -e Exact. If not given, and the glob does not end in a '*', one is added. -f Base matches on file_name() instead of creator(). Costly. -l t Show call_outs with at lest 't' seconds left. -u t Show call_outs with at most 't' seconds left. -s Sort the list before displaying it. -r Show reversed list, i.e. greatest 'time left' first.NOTE
The file_name() (-f) option is rather costly, approximately 100 times as costly as the default on creator().EXAMPLE
callinfo Show your call_outs.EXAMPLE
callinfo *foo* Show call_outs for all objects with a file_name containing the string 'foo'.EXAMPLE
callinfo foo Show call_outs for all objects with the file_name 'foo'.EXAMPLE
callinfo -pEquivalent to 'callinfo'. EXAMPLE
callinfo -p foo Show call_outs for objects in the wizard 'foo's directories.EXAMPLE
callinfo /players/foo/* Equivalent to 'callinfo -p foo'.EXAMPLE
callinfo -l 300 u 800 -p foo -r Show all call_outs for wizard 'foo' that has more than 299 but less than 401 seconds left in reversed order, i.e. the call_outs with most time left are listed first.SEE ALSO
getopts in support/getoptsSEE ALSO
glob in efun/special/glob