view scripts/createdirectory.sh @ 307:8e66ced156dd

add delta to sample the time window in LCSS function
author Mohamed Gomaa
date Tue, 25 Dec 2012 02:16:10 -0500
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