Solaris - Add/Modify/Remove User using Unix Shell
- Add User - In order to add UNIX user we can use useradd
- -G primary group
- -g secondary group
- -d default directory
- -m forces to create default directory
- -s default Shell
Where options for useradd are
>useradd -G staff -d /usr/testusr -m -s /bin/ksh testusr

>usermod -s /bin/csh testusr

>passwd testusr

>userdel -r testusr

