view scripts/createdirectory.sh @ 104:13187af8622d

finally added the representation of intervals
author Nicolas Saunier <nico@confins.net>
date Thu, 14 Jul 2011 17:15:09 -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