I am aware that a new user's home directory can be created by doing sudo useradd -m -d /home/<username> <username>.
However, let's say that I also want to make another non-home directory for this user at /ssd/<username>, and I do not want to make it by hand each time I add a new user to the system. In other words, I do not want to do these separately:
useradd -m -d /home/<username> <username>mkdir /ssd/<username>- change the directory permissions.
I would like to do all 3 in a single command.
Does useradd or adduser provide an option that can do this at the creation time of the user?