#!/bin/bash
LICENSE_DIR=/opt/hsc/data
dir=`dirname $1`
if [ "$dir" == "$LICENSE_DIR" ]; then
   touch $1
fi
