{%
    for _, obj in ipairs(ClearCmos) do
        if HostType == 'Multihost' then
            echo(string.format('Clear System%s CMOS %s.\n', obj.sysid, obj.Result == 0 and 'successfully' or 'failed'))
        else
            echo(string.format('Clear CMOS %s.\n', obj.Result == 0 and 'successfully' or 'failed'))
        end
    end
    echo('\b')
%}