Browse Source

* separate command in nerest quick to set executable bit on quick script *.sh files & check quick_dir exists before launch nerest script operations

master
dimti 2 years ago
parent
commit
a54aa8afc4
  1. 12
      wp/nerest-quick.sh

12
wp/nerest-quick.sh

@ -1,5 +1,13 @@
#!/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}' \;
if [[ ! -d $QUICK_DIR ]]; then
echo "Quick dir not exists: ${QUICK_DIR}"
exit 1
fi
cd $QUICK_DIR
find ./ -name "*.sh.example" -exec sh -c 'F={}; cp -u $F ${F%.example}' \;
find ./ -name "*.sh" -exec sh -c 'F={}; chmod +x ${F}' \;
Loading…
Cancel
Save