+ ignore helper wp script for create .gitignore files in some wp-content dirs + nerest quick script example & readmes * update quick scripts with use SCRIPT_DIR logic (where quick scripts placed in subfolder of root project dir) * legacy create mysql example moved to root dir
6 lines
147 B
Bash
Executable File
6 lines
147 B
Bash
Executable File
#!/bin/bash
|
|
QUICK_DIR=quick
|
|
|
|
cd $QUICK_DIR &&
|
|
find ./ -name "*.sh.example" -exec sh -c 'F={}; cp -u $F ${F%.example} && chmod +x ${F%.example}' \;
|