Is there a way to loop the commands until the number of names from the prompt, i dont want it to just limit the number of users but to continuisly add names to the prompt while repeating the line of code
read -p "Enter user/s: " user user1 user2 user3
mkdir $user
mkdir $user1
mkdir $user2
mkdir $user3
Like, Enter user/s: Michael Raphael Gabriel Satanel Helel... (continuosly to infinite) then make different directories named from the list of names from prompt by looping the command instead of copy and pasting