Files
wmic/Samba/source/script/installdirs.sh
T

18 lines
166 B
Bash
Raw Normal View History

2019-02-16 00:16:52 +01:00
#!/bin/sh
while ( test -n "$1" ); do
if [ ! -d $1 ]; then
mkdir -p $1
fi
if [ ! -d $1 ]; then
echo Failed to make directory $1
exit 1
fi
shift;
done