in reply to adding a group to the Unix System

Your command system (“echo” , “groupadd”, “$groupName”); only prints the UNIX command to add a group. The comment above that line suggests to delete "echo" from that line which should then lead to the execution of the command.

Replies are listed 'Best First'.
Re^2: adding a group to the Unix System
by deyaneria (Acolyte) on Mar 15, 2015 at 17:55 UTC
    thank you, I thought the ## was different than a comment and that it was only one # for a comment...I sent the same code to my teacher and he didn't see it either. I will correct immediately.
Re^2: adding a group to the Unix System
by deyaneria (Acolyte) on Mar 15, 2015 at 18:05 UTC
    And again thank you it's now working properly now I can fix the adduser part of the menu where it adds the user to a group.