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