Files
autodeploy/wp/quick/nerest-examples.sh

11 lines
337 B
Bash
Raw Normal View History

2022-09-17 12:36:43 +03:00
#!/bin/bash
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $SCRIPT_DIR
find ./ -name "*.sh" -not -path "./nerest*" -not -path "./ignore*" -exec sh -c 'F={}; cp -u $F ${F}.example' \;
2022-09-17 12:36:43 +03:00
find ./ -name "*.sh.example" -exec sh -c 'F={}; chmod -x ${F}' \;
find ./ -name "*.sh.example" -exec sh -c 'F={}; git add ${F}' \;