view scripts/createdirectory.sh @ 637:c9a0b72979fd

added function to get canadian public weather data
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Thu, 02 Apr 2015 15:53:59 +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