Skip to content

Instantly share code, notes, and snippets.

@gwojtak
Created April 9, 2020 22:06
Show Gist options
  • Save gwojtak/24d51ce34a074951f6cc8749dbe0142b to your computer and use it in GitHub Desktop.
Save gwojtak/24d51ce34a074951f6cc8749dbe0142b to your computer and use it in GitHub Desktop.
Enforce Permissions on a directory
inotifywait -mrq -e CREATE --format %w%f "$1" | while read FILE
do
[[ -d "${FILE}" ]] && chmod 2775 "${FILE}"
[[ -f "${FILE}" ]] && chmod 0664 "${FILE}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment