Skip to content

Instantly share code, notes, and snippets.

PROJECT=$1
TARGET=$2
if [ "$PROJECT" == '' ] || [ "$TARGET" == '' ]; then
echo "Usage $0 projectDirectory targetDirectory"
exit
fi
if [ ! -d $PROJECT/$TARGET ]; then
echo "$PROJECT/$TARGET does not exist"