* exclude ignore.sh on nerest examples script

This commit is contained in:
2022-09-17 12:37:45 +03:00
parent 22d942344f
commit 87bd18cc0e

View File

@ -3,7 +3,7 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $SCRIPT_DIR
find ./ -name "*.sh" -not -path "./nerest*" -exec sh -c 'F={}; cp -u $F ${F}.example' \;
find ./ -name "*.sh" -not -path "./nerest*" -not -path "./ignore*" -exec sh -c 'F={}; cp -u $F ${F}.example' \;
find ./ -name "*.sh.example" -exec sh -c 'F={}; chmod -x ${F}' \;