1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-09 09:57:48 +03:00
samba-mirror/source3/script/installdirs.sh
Gerald Carter 5fb5950258 small merges from SAMBA_3_0; mostly typos, renames, etc...
(This used to be commit 9ac196dad4893b0ceef13281a140be5d85391e6c)
2003-01-15 18:31:46 +00:00

18 lines
166 B
Bash
Executable File

#!/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