I can never remember the names for faxes (lfm? lobster? lobsterfrogman?), so I can't really get much mileage out of the CLI command. If there were an ASH function for this, I'd be able to write code like
instead of
Code:
monster fax_target = some_function();
faxbot(fax_target);
Code:
string [monster] faxbot_data = some_function_that_does_a_lot_of_stuff();
string fax_target = faxbot_data[some_function()];
cli_execute("faxbot " + fax_target);