Commit 803578ab authored by VELIDANDI VARUN KUMAR's avatar VELIDANDI VARUN KUMAR

By Varun

parent 436cc550
#!/bin/bash
filename="$1"
while read -r line
do
if [ -e $line ]
then
echo "could not create $line"
else
mkdir $line
echo "created $line"
fi
done < "$filename"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment