I'm trying to write a script that takes one string argument, divides the string into characters and uses the characters to create directory.
Ex: "./addUser asd" should create a directory named "a" inside the directory that the script is located, it also has to create a directory named "s" as a child directory of "a". Similarly, a directory named "d" has to be created inside the directory "s".
I'm stuck, can you please help?
Thanks in advance.