{%
    echo('ID      Name              Privilege      Interface                                       PublicKeyHash                                   State')
    for i, user in ipairs(user_table) do 
        if not string.find(user.Name, "<.*>", 1, false) then
            local line = string.format('\n%-8s%-18s%-15s%-48s%-48s%-15s', user.Id, user.Name, user.Privilege, table.concat(user.Interface,','), #user.PublicKeyHash ~= 0 and user.PublicKeyHash or 'NA', user.State and 'Enabled' or 'Disabled')
            echo(line)
        end
    end
%}