mkdir linux alternative that can make directories the paths specified in a file done at once
by BudiKusasi from LinuxQuestions.org on  (#5CKQ2)
	Is there utility as mkdir linux alternative that can make directories the paths specified in a file done at once in a call, so that far faster, simpler, more efficient?
as mkdir can do it by for loop
Code:(while read -r s;do
mkdir -p $s
done ) <Pathslet that util be illustrated as
Code:mdir -f Pathsas the file contains more 500 lines has a clear difference ? 
  
  
  
 

	
as mkdir can do it by for loop
Code:(while read -r s;do
mkdir -p $s
done ) <Pathslet that util be illustrated as
Code:mdir -f Pathsas the file contains more 500 lines has a clear difference ?