Hi
I just wanted to know is there any way in the perl to add a unix user to unix group.
e.g.
I linux we have command to do so,
I have found a CPAN perl module Linux:usermod to do so,Is there any other way except this module ?
Regards,
Ritusriv
I just wanted to know is there any way in the perl to add a unix user to unix group.
e.g.
I linux we have command to do so,
Code:
usermod -a -G <group> <user>
Regards,
Ritusriv
Comment