wmi-1.3.16 from opsview.com
This commit is contained in:
Executable
+17
@@ -0,0 +1,17 @@
|
||||
#!/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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user