Skip to content

Instantly share code, notes, and snippets.

@angeloevangelista
Created January 5, 2026 19:58
Show Gist options
  • Select an option

  • Save angeloevangelista/7674113508d7bfbcbc4bdbe2cfe982ce to your computer and use it in GitHub Desktop.

Select an option

Save angeloevangelista/7674113508d7bfbcbc4bdbe2cfe982ce to your computer and use it in GitHub Desktop.
Adjust files modes after backup
# Fix directories
find . -type d -exec chmod 755 {} +
# Fix files
find . -type f -exec chmod 644 {} +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment