Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ekiara/6448262 to your computer and use it in GitHub Desktop.
Save ekiara/6448262 to your computer and use it in GitHub Desktop.
Recursively adding write permissions for the group
#!/bin/bash
# Recursively adding write permissions for the group
chmod -R ug+rw ./directory/
# <OR>
chmod --recursive ug+rw ./directory/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment