#!/bin/bash
if [ ! -d "$2" ]; then
    mkdir -p "$2"
fi

cp -R "$1" "$2"
