view scripts/createdirectory.sh @ 814:0ae57c76f19c

requirements.txt edited online with Bitbucket
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Thu, 16 Jun 2016 17:35:16 +0000
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