You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
180 B

  1. #!/bin/bash
  2. DIRS=( wp-content/plugins )
  3. export WEB_GID=33
  4. perms() {
  5. sudo chown -R $UID:$WEB_GID "$1"
  6. sudo chmod -R g+rwx "$1"
  7. }
  8. for DIR in "${DIRS[@]}"; do
  9. perms "$DIR"
  10. done