Add script to update libs

This commit is contained in:
robin 2021-05-14 13:41:01 +02:00
parent 0dbbee0358
commit 682c232879
1 changed files with 13 additions and 0 deletions

13
scripts/cp_libs.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
src="../zzLib/Libs"
start=".."
findterm="Libs/zzAddOn"
for entry in "$start"/*
do
if [ -e "$entry/$findterm" ]
then
echo "$entry"
cp -vra $src $entry
fi
done