Hi Himacs,
Useradd command takes single login input by default. You can use for loop like this..
for USER in user1 user2 user3 user4 user5
do
useradd -m $USER
done
This will create the users with default shell, default group. If you want specific shell, specific group or specific command, you can pass the informations to the useradd command.
useradd -g
-s -c "comment if any> -m $USER
Best wishes,
Ganesh.