view scripts/createdirectory.sh @ 1282:106365257da9

reorganization of moving.py and adding documentation tests
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Tue, 09 Jul 2024 17:44:51 -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