in reply to Want to Create Unix group using perl script
For checking if a group exists you can use getgrnam (scalar getgrnam("foo") — returns the GID, or undef if a group of the given name doesn't exist).
For creating a new group, I'd use the respective command supplied by your system, such as groupadd (call it via system) — there's no reason to reinvent the wheel and run into various gotchas that can be avoided by using existing tools.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Want to Create Unix group using perl script
by JavaFan (Canon) on Mar 17, 2010 at 14:40 UTC | |
|
Re^2: Want to Create Unix group using perl script
by abhi.nitk2003 (Initiate) on Mar 18, 2010 at 05:14 UTC |