view scripts/createdirectory.sh @ 599:4b5fe2de1e8d

modify the name of collisionCourseCosines to collisionCourseAngles
author Mohamed Gomaa
date Thu, 18 Apr 2013 15:46:21 -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