NAME IO::Adapter::UnixGroup - IO wrapper to read /etc/group. SYNOPSIS $map = 'unix.group:fml'; use IO::Adapter; $obj = new IO::Adapter $map; $obj->open || croak("cannot open $map"); while ($x = $obj->getline) { ... } $obj->close; /etc/group has "fml" entry like this: fml:*:1000:fukachan DESCRIPTION See IO::Adapter::Array for more details. It inherits "IO::Adapter::Array" class. "CAUTION: this map is read only". METHOD configure($obj) Configure object for array IO operation. SEE ALSO IO::Adapter::Array CODING STYLE See "http://www.fml.org/software/FNF/" on fml coding style guide. AUTHOR Ken'ichi Fukamachi COPYRIGHT Copyright (C) 2001,2002,2003,2004 Ken'ichi Fukamachi All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. HISTORY IO::Adapter::UnixGroup first appeared in fml8 mailing list driver package. See "http://www.fml.org/" for more details.