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 mkdir Worked for me.
2
I 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 mkdir Worked for me.
2