I want to take a word as input and creating consecutive directories using the letters of this word in unix shell. I tried sed, awk and fold commands but did not obtaiın any useful result. Any advice?
For example: If input is hello
, it should create h/e/l/l/o
directories as one inside another. In other words, h
will be the top directory and o
will be the deepest subdirectory.