Message 28136 - Python tracker

Message28136

Author rptownsend
Recipients
Date 2006-04-07.14:58:09
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=200117

When I run the following script on the workstation

import pwd, grp

entries = pwd.getpwall()
for e in entries:
    if e[2] < 0:
        print e
        
entries = grp.getgrall()
for e in entries:
    if e[2] < 0:
        print e
    
--------------------------

I get this output:

('nobody', '*', -2, -2, '', '/', '')
('nogroup', '*', -2, [])

History
Date User Action Args
2007-08-23 14:39:11adminlinkissue1465646 messages
2007-08-23 14:39:11admincreate