fix deep-cp bug

This commit is contained in:
Kenneth Reitz
2012-12-19 22:44:49 -05:00
parent db1df1ac67
commit 87c580f819
+1
View File
@@ -37,6 +37,7 @@ function set-default-env (){
# Does some serious copying.
function deep-cp (){
find -H $1 -maxdepth 1 -name '.*' -a \( -type d -o -type f -o -type l \) -exec cp -a '{}' $2 \;
cp -r $1/* $2
echo copying $1 to $2
}