useradd, groupadd #
bash
# Create group [test] and user [test]
groupadd test
useradd -g test -m -d /home/test -s /bin/bash test
passwd test
# Create group [test] and user [test]
groupadd test
useradd -g test -m -d /home/test -s /bin/bash test
passwd test