view scripts/createdirectory.sh @ 314:539e2b4cfaa3

modified for 4740 tps
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Tue, 09 Apr 2013 12:38:58 -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