Skip to content

Instantly share code, notes, and snippets.

@kmvan
Created June 14, 2021 09:23
Show Gist options
  • Save kmvan/3f5b3c9c6ff84a23859951a1871a1658 to your computer and use it in GitHub Desktop.
Save kmvan/3f5b3c9c6ff84a23859951a1871a1658 to your computer and use it in GitHub Desktop.
Set dir and file mode
#!/bin/bash
# dirs
find -type d -exec chmod 0755 {} \;
# files
find -not -type d -exec chmod 644 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment