view scripts/createdirectory.sh @ 114:680d4c82886d

minor change to the point marker
author Nicolas Saunier <nico@confins.net>
date Mon, 18 Jul 2011 19:24:06 -0400
parents 626560624d55
children
line wrap: on
line source

#!/bin/bash
DIRECTORY=$1
if [[ ! -d "${DIRECTORY}" && ! -L "${DIRECTORY}" ]] ; then
    echo "creating directory ${DIRECTORY}"
    mkdir "${DIRECTORY}"
fi
#if [[ -d "${DIRECTORY}" && ! -L "${DIRECTORY}" ]] ; then