useradd,groupadd

useradd, groupadd #

bash
# Create group [test] and user [test]
groupadd test
useradd -g test -m -d /home/test -s /bin/bash test
passwd test
2023年8月8日