blob: 480d0d9554b6f13c6cbcc6b85c0179c8b4122de3 [file] [log] [blame]
if [ $# -ne 2 ];then
echo example : ./file_touch.sh lynq/CPE ap/Makefile
echo Create the lynq/CPE/ap/ directory and copy the ap/Makefile file to the lynq/CPE/ap/ directory
exit
fi
str=$1/$(dirname $2)
echo $str/$(basename $2)
mkdir -p $str
cp $2 $str