Added script for mirroring an entire folderstructure with empty files.

This commit is contained in:
Jorge Vásquez Pérez
2018-12-13 10:16:24 -08:00
parent 23b1317941
commit 080007d49f
+1
View File
@@ -0,0 +1 @@
find $1/ -type d -exec mkdir -p $2/{} \; -o -type f -exec touch $2/{} \;;