view scripts/createdirectory.sh @ 1191:f3b3696f5640

adding time interval for MOTA computation
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Tue, 28 Jun 2022 11:30:08 +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