I have a text file named checklog.txt. I want to create directories from that names in the text file line by line.
1 Answer
cat checklog.txt | xargs -L 1 mkdirWorked for me.
2I have a text file named checklog.txt. I want to create directories from that names in the text file line by line.
cat checklog.txt | xargs -L 1 mkdirWorked for me.
2