mirror of
https://github.com/samba-team/samba.git
synced 2025-02-24 13:57:43 +03:00
20 lines
224 B
Bash
Executable File
20 lines
224 B
Bash
Executable File
#!/bin/sh
|
|
|
|
while ( test -n "$1" ); do
|
|
|
|
DIRNAME=`echo $1 | sed 's/\/\//\//g'`
|
|
if [ ! -d $DIRNAME ]; then
|
|
mkdir -p $DIRNAME
|
|
fi
|
|
|
|
if [ ! -d $DIRNAME ]; then
|
|
echo Failed to make directory $1
|
|
exit 1
|
|
fi
|
|
|
|
shift;
|
|
done
|
|
|
|
|
|
|