Mercurial > hg > nsaunier > traffic-intelligence
view scripts/createdirectory.sh @ 111:48e3de4acb65
corrected bugs in file copying functions and added utility to get concatenate feature numbers for a set of objects
| author | Nicolas Saunier <nico@confins.net> |
|---|---|
| date | Fri, 15 Jul 2011 19:51:31 -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
