#!/bin/sh -eu

. sh-functions

for tree in "$@"; do
	verbose "Copying '$tree' recursively ..."
	cp -aPt "$rootdir" "$tree"/*
done
