#!/bin/sh

echo -n 'checking' $1 '...'

if [ -d $1 ]
then
	echo 'ok'
else
	echo ' not exist'
	mkdir -p $1
fi
