view scripts/createdirectory.sh @ 1156:f7fbe624fff7

added helper functions for categorical variables
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 25 Sep 2020 11:56:59 -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