view scripts/createdirectory.sh @ 651:335f6641bf7a

changed the paramter usePrototypes to False by default
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 17 Apr 2015 17:33:32 +0200
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