copy files to new location

This commit is contained in:
array-in-a-matrix 2022-07-05 19:13:50 -04:00
parent b296edecb7
commit 9c40e1e023

View file

@ -23,3 +23,7 @@ do
echo "Modified: " $file
done
for file in $(find input -type f | grep -v '.htm\|.css\|.js')
do
cp --parent $file output
done